mirror of
https://github.com/moparisthebest/SickRage
synced 2025-03-04 18:39:39 -05:00
Fix low quality snatch not showing in backlog overview
Low quality snatched wasn't appearing anymore in backlog overview
From:
7878a1b610
@Tagforce
This commit is contained in:
parent
e0204d048e
commit
226a7148d2
@ -1276,8 +1276,9 @@ class TVShow(object):
|
|||||||
if epStatus == DOWNLOADED and curQuality == Quality.UNKNOWN:
|
if epStatus == DOWNLOADED and curQuality == Quality.UNKNOWN:
|
||||||
return Overview.QUAL
|
return Overview.QUAL
|
||||||
elif epStatus in (SNATCHED, SNATCHED_PROPER, SNATCHED_BEST):
|
elif epStatus in (SNATCHED, SNATCHED_PROPER, SNATCHED_BEST):
|
||||||
|
if curQuality < maxBestQuality:
|
||||||
|
return Overview.QUAL
|
||||||
return Overview.SNATCHED
|
return Overview.SNATCHED
|
||||||
# if they don't want re-downloads then we call it good if they have anything
|
|
||||||
elif maxBestQuality == None:
|
elif maxBestQuality == None:
|
||||||
return Overview.GOOD
|
return Overview.GOOD
|
||||||
# if they have one but it's not the best they want then mark it as qual
|
# if they have one but it's not the best they want then mark it as qual
|
||||||
|
Loading…
x
Reference in New Issue
Block a user