Merge pull request #745 from JackDandy/feature/ChangeShowUpdateSpecials

Change set Specials to status "Skipped" not "Wanted" during show updates.
This commit is contained in:
JackDandy 2016-07-27 18:44:42 +01:00 committed by GitHub
commit fd325c5cfa
2 changed files with 6 additions and 2 deletions

View file

@ -110,6 +110,7 @@
* Change add three IPTorrents fallback urls
* Change remove one dead and add three fallback magnet torcaches for blackhole use
* Change increase delay between requests to nnab servers to over 2 seconds
* Change set Specials to status "Skipped" not "Wanted" during show updates
[develop changelog]
* Change send nzb data to NZBGet for Anizb instead of url

View file

@ -1795,11 +1795,14 @@ class TVEpisode(object):
# if we don't have the file and the airdate is in the past
else:
if self.status == UNAIRED:
self.status = WANTED
if 0 < self.season:
self.status = WANTED
else:
self.status = SKIPPED
# if we somehow are still UNKNOWN then just skip it
elif self.status == UNKNOWN or (old_airdate_future and self.status == SKIPPED):
if update and not self.show.paused:
if update and not self.show.paused and 0 < self.season:
self.status = WANTED
else:
self.status = SKIPPED