Private GIT

Skip to content
Snippets Groups Projects
Commit ff589454 authored by Fernando's avatar Fernando
Browse files

Paused shows: unaired episodes should honor default ep status

parent c2e53444
No related branches found
No related tags found
No related merge requests found
...@@ -92,7 +92,7 @@ class DailySearcher(): ...@@ -92,7 +92,7 @@ class DailySearcher():
ep = show.getEpisode(int(sqlEp["season"]), int(sqlEp["episode"])) ep = show.getEpisode(int(sqlEp["season"]), int(sqlEp["episode"]))
with ep.lock: with ep.lock:
if ep.show.paused: if ep.show.paused:
ep.status = common.SKIPPED ep.status = ep.show.default_ep_status
elif ep.season == 0: elif ep.season == 0:
logger.log(u"New episode " + ep.prettyName() + " airs today, setting status to SKIPPED because is a special season") logger.log(u"New episode " + ep.prettyName() + " airs today, setting status to SKIPPED because is a special season")
ep.status = common.SKIPPED ep.status = common.SKIPPED
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment