1
0
mirror of https://github.com/moparisthebest/SickRage synced 2024-08-13 16:53:54 -04: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:
Fernando 2014-12-23 17:59:53 -02:00
parent 68e4acaf37
commit 8b3f431ae1

View File

@ -1224,11 +1224,11 @@ class TVShow(object):
if epStatus in (WANTED, UNAIRED, SKIPPED):
logger.log(u"Existing episode status is wanted/unaired/skipped, getting found episode", logger.DEBUG)
return True
elif manualSearch:
logger.log(
u"Usually ignoring found episode, but forced search allows the quality, getting found episode",
logger.DEBUG)
return True
#elif manualSearch:
# logger.log(
# u"Usually ignoring found episode, but forced search allows the quality, getting found episode",
# logger.DEBUG)
# return True
else:
logger.log(u"Quality is on wanted list, need to check if it's better than existing quality",
logger.DEBUG)