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

Merge pull request #1155 from fernandog/patch-4

Don't re-download same quality if we do MANUAL SEARCH
This commit is contained in:
echel0n 2015-01-13 19:45:41 -08:00
commit 10502ddaef

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)