Regard torrents and torrent_magnet the same

When sorting the torrents and torrent_magnets were sorted, by taking
only the three first characters (as 'nzb; is three chars), the score
prevails. Fixes #2004
This commit is contained in:
mano3m
2013-08-11 00:04:40 +02:00
parent f12d878c0b
commit 448c1d69a7

View File

@@ -195,7 +195,7 @@ class Searcher(Plugin):
download_preference = self.conf('preferred_method')
if download_preference != 'both':
sorted_results = sorted(sorted_results, key = lambda k: k['type'], reverse = (download_preference == 'torrent'))
sorted_results = sorted(sorted_results, key = lambda k: k['type'][:3], reverse = (download_preference == 'torrent'))
# Check if movie isn't deleted while searching
if not db.query(Movie).filter_by(id = movie.get('id')).first():