From 8b3f431ae1fd687b629896a4476b6af0308e60c2 Mon Sep 17 00:00:00 2001 From: Fernando Date: Tue, 23 Dec 2014 17:59:53 -0200 Subject: [PATCH] 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 --- sickbeard/tv.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/sickbeard/tv.py b/sickbeard/tv.py index 1c1e27ee..1e7a5373 100644 --- a/sickbeard/tv.py +++ b/sickbeard/tv.py @@ -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)