From 0f31ac81bfa75c8c1680f3377288785ada3b614e Mon Sep 17 00:00:00 2001 From: Jon Whitter Date: Wed, 13 Sep 2017 11:48:12 +0100 Subject: [PATCH] Reworked the categories for TorrentLeech to catch WEB-DL, WEBRip, HDRip and 2160p --- couchpotato/core/media/movie/providers/torrent/torrentleech.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/couchpotato/core/media/movie/providers/torrent/torrentleech.py b/couchpotato/core/media/movie/providers/torrent/torrentleech.py index eea74f8..91093e3 100644 --- a/couchpotato/core/media/movie/providers/torrent/torrentleech.py +++ b/couchpotato/core/media/movie/providers/torrent/torrentleech.py @@ -11,12 +11,14 @@ autoload = 'TorrentLeech' class TorrentLeech(MovieProvider, Base): cat_ids = [ - ([13], ['720p', '1080p', 'bd50']), + ([41], ['2160p']), + ([13, 14, 37, 43], ['720p', '1080p']), + ([13], ['bd50']), ([8], ['cam']), ([9], ['ts', 'tc']), - ([10], ['r5', 'scr']), + ([10, 11, 37], ['r5', 'scr']), ([11], ['dvdrip']), - ([13, 14], ['brrip']), + ([13, 14, 37, 43], ['brrip']), ([12], ['dvdr']), ]