1
0
mirror of https://github.com/moparisthebest/SickRage synced 2024-11-05 17:05:03 -05:00

Merge pull request #1206 from fernandog/patch-10

Re-download episode when manualsearch and quality is Unknown
This commit is contained in:
echel0n 2015-01-29 14:35:30 -08:00
commit e401d76f7d

View File

@ -1240,6 +1240,10 @@ class TVShow(object):
logger.log(u"Episode already exists but the found episode has better quality, getting found episode",
logger.DEBUG)
return True
elif curStatus == Quality.UNKNOWN and manualSearch:
logger.log(u"Episode already exists but quality is Unknown, getting found episode",
logger.DEBUG)
return True
else:
logger.log(u"Episode already exists and the found episode has same/lower quality, ignoring found episode",
logger.DEBUG)