1
0
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:
Tab Bennedum 2014-11-25 13:19:39 -05:00
parent c86aadca1e
commit a3c733d686

View File

@ -2724,6 +2724,8 @@ class CMD_Shows(ApiCall):
if self.paused != None and bool(self.paused) != bool(curShow.paused): if self.paused != None and bool(self.paused) != bool(curShow.paused):
continue continue
indexerShow = helpers.mapIndexersToShow(curShow)
showDict = { showDict = {
"paused": curShow.paused, "paused": curShow.paused,
"quality": _get_quality_string(curShow.quality), "quality": _get_quality_string(curShow.quality),
@ -2732,8 +2734,8 @@ class CMD_Shows(ApiCall):
"sports": curShow.sports, "sports": curShow.sports,
"anime": curShow.anime, "anime": curShow.anime,
"indexerid": curShow.indexerid, "indexerid": curShow.indexerid,
"tvdbid": helpers.mapIndexersToShow(curShow)[1], "tvdbid": indexerShow[1],
"tvrage_id": helpers.mapIndexersToShow(curShow)[2], "tvrage_id": indexerShow[2],
"tvrage_name": curShow.name, "tvrage_name": curShow.name,
"network": curShow.network, "network": curShow.network,
"show_name": curShow.name, "show_name": curShow.name,