From 0064e55f34441a7949218b500e8a454de8ee9e71 Mon Sep 17 00:00:00 2001 From: Prinz23 Date: Sun, 29 Jan 2017 14:07:07 +0100 Subject: [PATCH] For WEB DL only allow proper/repack from same release group --- sickbeard/properFinder.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/sickbeard/properFinder.py b/sickbeard/properFinder.py index 40a46d46..80a7a4c7 100644 --- a/sickbeard/properFinder.py +++ b/sickbeard/properFinder.py @@ -177,6 +177,11 @@ def _get_proper_list(aired_since_shows, recent_shows, recent_anime): or cur_proper.quality != old_quality: continue + # only take same release qroup for web dl's + if old_quality in (Quality.HDWEBDL, Quality.FULLHDWEBDL, Quality.UHD4KWEB) and \ + cur_proper.release_group != sql_results[0]['release_group']: + continue + # check if we actually want this proper (if it's the right release group and a higher version) if parse_result.is_anime: my_db = db.DBConnection()