Private GIT

Skip to content
Snippets Groups Projects
Commit 5f4a3a9e authored by miigotu's avatar miigotu
Browse files

Merge pull request #2197 from SiCKRAGETV/another-paused-show-check

searchRSS returning episodes for paused shows? - TEST
parents 0cb74e4a 64964151
No related branches found
No related tags found
No related merge requests found
......@@ -397,6 +397,10 @@ def searchForNeededEpisodes():
# pick a single result for each episode, respecting existing results
for curEp in curFoundResults:
if not curEp.show or curEp.show.paused:
logger.log(u"Skipping %s because the show is paused " % curEp.prettyName(), logger.DEBUG)
continue
bestResult = pickBestResult(curFoundResults[curEp], curEp.show)
# if all results were rejected move on to the next episode
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment