mirror of
https://github.com/moparisthebest/SickRage
synced 2025-01-07 11:58:01 -05:00
Don't re-download same quality if we do MANUAL SEARCH
If we want to re-download the same quality, set as WANTED. As mentioned in here: https://github.com/SiCKRAGETV/sickrage-issues/issues/206
This commit is contained in:
parent
68e4acaf37
commit
8b3f431ae1
@ -1224,11 +1224,11 @@ class TVShow(object):
|
|||||||
if epStatus in (WANTED, UNAIRED, SKIPPED):
|
if epStatus in (WANTED, UNAIRED, SKIPPED):
|
||||||
logger.log(u"Existing episode status is wanted/unaired/skipped, getting found episode", logger.DEBUG)
|
logger.log(u"Existing episode status is wanted/unaired/skipped, getting found episode", logger.DEBUG)
|
||||||
return True
|
return True
|
||||||
elif manualSearch:
|
#elif manualSearch:
|
||||||
logger.log(
|
# logger.log(
|
||||||
u"Usually ignoring found episode, but forced search allows the quality, getting found episode",
|
# u"Usually ignoring found episode, but forced search allows the quality, getting found episode",
|
||||||
logger.DEBUG)
|
# logger.DEBUG)
|
||||||
return True
|
# return True
|
||||||
else:
|
else:
|
||||||
logger.log(u"Quality is on wanted list, need to check if it's better than existing quality",
|
logger.log(u"Quality is on wanted list, need to check if it's better than existing quality",
|
||||||
logger.DEBUG)
|
logger.DEBUG)
|
||||||
|
Loading…
Reference in New Issue
Block a user