Browse Source

If downloaders are disabled, keep searching for all qualities. closes #135

tags/build/2.0.0.pre1
Ruud 13 years ago
parent
commit
263a972b88
  1. 6
      couchpotato/core/plugins/searcher/main.py

6
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'])

Loading…
Cancel
Save