Private GIT

Skip to content
Snippets Groups Projects
Commit 6d38c772 authored by labrys's avatar labrys
Browse files

Fix api only returns results when paused = 1

parent 3b4bfad4
No related merge requests found
...@@ -2798,8 +2798,8 @@ class CMD_Shows(ApiCall): ...@@ -2798,8 +2798,8 @@ class CMD_Shows(ApiCall):
shows = {} shows = {}
for curShow in sickbeard.showList: for curShow in sickbeard.showList:
if not self.paused and not curShow.paused: if not self.paused and curShow.paused: # If we're not including paused shows, and the current show is paused
continue continue # continue with the next show
indexer_show = helpers.mapIndexersToShow(curShow) indexer_show = helpers.mapIndexersToShow(curShow)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment