From 263a972b88f0281c2556bb1d0eae4588fe41f3ec Mon Sep 17 00:00:00 2001 From: Ruud Date: Wed, 25 Apr 2012 22:50:05 +0200 Subject: [PATCH] If downloaders are disabled, keep searching for all qualities. closes #135 --- couchpotato/core/plugins/searcher/main.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/couchpotato/core/plugins/searcher/main.py b/couchpotato/core/plugins/searcher/main.py index 4c26f4c..530c4ce 100644 --- a/couchpotato/core/plugins/searcher/main.py +++ b/couchpotato/core/plugins/searcher/main.py @@ -123,7 +123,11 @@ class Searcher(Plugin): for nzb in sorted_results: - return self.download(data = nzb, movie = movie) + downloaded = self.download(data = nzb, movie = movie) + if downloaded: + return True + else: + break else: log.info('Better quality (%s) already available or snatched for %s' % (quality_type['quality']['label'], default_title)) fireEvent('movie.restatus', movie['id'])