From 7e1fc5e83ffc0dddbc6e67473115906db2f071fe Mon Sep 17 00:00:00 2001 From: Fernando Date: Mon, 1 Dec 2014 23:06:33 -0200 Subject: [PATCH] Fix error in webapi causing "No Shows" in NZB360 https://sickrage.tv/forums/forum/help-support/bug-issue-reports/13208-shows-list-is-empty-in-nzb360 --- sickbeard/webapi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sickbeard/webapi.py b/sickbeard/webapi.py index 098c7ce5..c0164dc4 100644 --- a/sickbeard/webapi.py +++ b/sickbeard/webapi.py @@ -2827,7 +2827,7 @@ class CMD_Shows(ApiCall): showDict['next_ep_airdate'] = '' showDict["cache"] = \ - CMD_ShowCache(self.handler, (), {"indexerid or tvdbid or tvrageid": curShow.indexerid}).run()["data"] + CMD_ShowCache(self.handler, (), {"indexerid": curShow.indexerid}).run()["data"] if not showDict["network"]: showDict["network"] = "" if self.sort == "name":