mirror of
https://github.com/SickGear/SickGear.git
synced 2025-01-05 17:43:37 +00:00
For WEB DL only allow proper/repack from same release group
This commit is contained in:
parent
fc5e0df46c
commit
0064e55f34
1 changed files with 5 additions and 0 deletions
|
@ -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()
|
||||
|
|
Loading…
Reference in a new issue