mirror of
https://github.com/SickGear/SickGear.git
synced 2025-03-15 09:07:43 +00:00
Change set Specials to status "Skipped" not "Wanted" during show updates.
This commit is contained in:
parent
6a6fd914b6
commit
8ceb85becd
2 changed files with 6 additions and 2 deletions
|
@ -110,6 +110,7 @@
|
||||||
* Change add three IPTorrents fallback urls
|
* Change add three IPTorrents fallback urls
|
||||||
* Change remove one dead and add three fallback magnet torcaches for blackhole use
|
* 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 increase delay between requests to nnab servers to over 2 seconds
|
||||||
|
* Change set Specials to status "Skipped" not "Wanted" during show updates
|
||||||
|
|
||||||
[develop changelog]
|
[develop changelog]
|
||||||
* Change send nzb data to NZBGet for Anizb instead of url
|
* Change send nzb data to NZBGet for Anizb instead of url
|
||||||
|
|
|
@ -1795,11 +1795,14 @@ class TVEpisode(object):
|
||||||
# if we don't have the file and the airdate is in the past
|
# if we don't have the file and the airdate is in the past
|
||||||
else:
|
else:
|
||||||
if self.status == UNAIRED:
|
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
|
# if we somehow are still UNKNOWN then just skip it
|
||||||
elif self.status == UNKNOWN or (old_airdate_future and self.status == SKIPPED):
|
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
|
self.status = WANTED
|
||||||
else:
|
else:
|
||||||
self.status = SKIPPED
|
self.status = SKIPPED
|
||||||
|
|
Loading…
Reference in a new issue