Change set Specials to status "Skipped" not "Wanted" during show updates.

This commit is contained in:
Prinz23 2016-07-27 17:32:48 +02:00 committed by JackDandy
parent 6a6fd914b6
commit 8ceb85becd
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