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

Re-download episode when manualsearch if quality is Unknown

https://github.com/SiCKRAGETV/sickrage-issues/issues/428
This commit is contained in:
Fernando 2015-01-19 15:03:52 -02:00
parent 91cb8d885c
commit 8ad52924a6

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)