diff --git a/src/trackers/COMMON.py b/src/trackers/COMMON.py index 7e89a2e71..00f598517 100644 --- a/src/trackers/COMMON.py +++ b/src/trackers/COMMON.py @@ -642,6 +642,7 @@ async def filter_dupes(self, dupes, meta, tracker_name): target_resolution = meta.get("resolution") tag = meta.get("tag").lower().replace("-", " ") is_dvd = meta['is_disc'] == "DVD" + is_dvdrip = meta['type'] == "DVDRIP" web_dl = meta.get('type') == "WEBDL" target_source = meta.get("source") is_sd = meta.get('sd') @@ -707,7 +708,7 @@ async def process_exclusion(each): await log_exclusion("file extension mismatch (is_disc=True)", each) return True - if is_dvd or "DVD" in target_source: + if is_dvd or "DVD" in target_source or is_dvdrip: skip_resolution_check = True else: skip_resolution_check = False