mirror of
https://github.com/moparisthebest/SickRage
synced 2024-12-04 15:12:23 -05:00
Merge pull request #1184 from fernandog/patch-1
Fix low quality snatched episode don't appear at backlog
This commit is contained in:
commit
56bddc305c
@ -1269,7 +1269,7 @@ class TVShow(object):
|
||||
|
||||
if epStatus == FAILED:
|
||||
return Overview.WANTED
|
||||
elif epStatus in (SNATCHED, SNATCHED_PROPER, SNATCHED_BEST):
|
||||
elif epStatus in (SNATCHED_BEST, SNATCHED, SNATCHED_PROPER ) and curQuality == maxBestQuality:
|
||||
return Overview.SNATCHED
|
||||
# if they don't want re-downloads then we call it good if they have anything
|
||||
elif maxBestQuality == None:
|
||||
|
Loading…
Reference in New Issue
Block a user