mirror of
https://github.com/moparisthebest/SickRage
synced 2024-12-13 11:32:20 -05:00
Removed redundant call to helpers.mapIndexersToShow.
This commit is contained in:
parent
c86aadca1e
commit
a3c733d686
@ -2724,6 +2724,8 @@ class CMD_Shows(ApiCall):
|
||||
if self.paused != None and bool(self.paused) != bool(curShow.paused):
|
||||
continue
|
||||
|
||||
indexerShow = helpers.mapIndexersToShow(curShow)
|
||||
|
||||
showDict = {
|
||||
"paused": curShow.paused,
|
||||
"quality": _get_quality_string(curShow.quality),
|
||||
@ -2732,8 +2734,8 @@ class CMD_Shows(ApiCall):
|
||||
"sports": curShow.sports,
|
||||
"anime": curShow.anime,
|
||||
"indexerid": curShow.indexerid,
|
||||
"tvdbid": helpers.mapIndexersToShow(curShow)[1],
|
||||
"tvrage_id": helpers.mapIndexersToShow(curShow)[2],
|
||||
"tvdbid": indexerShow[1],
|
||||
"tvrage_id": indexerShow[2],
|
||||
"tvrage_name": curShow.name,
|
||||
"network": curShow.network,
|
||||
"show_name": curShow.name,
|
||||
|
Loading…
Reference in New Issue
Block a user