1
0
mirror of https://github.com/moparisthebest/SickRage synced 2024-08-13 16:53:54 -04:00

Fix low quality snatched episode don't appear at backlog

SiCKRAGETV/sickrage-issues#281
This commit is contained in:
Fernando 2015-01-14 08:25:59 -02:00
parent 0bb84466d0
commit 9101f644f7

View File

@ -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: