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

Merge pull request #1184 from fernandog/patch-1

Fix low quality snatched episode don't appear at backlog
This commit is contained in:
echel0n 2015-01-17 19:29:18 -08:00
commit 56bddc305c

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: