From d887fdeaca8e44db4652962326a4e4dd5bcf9c27 Mon Sep 17 00:00:00 2001 From: TRaSH Date: Wed, 8 Jun 2022 10:56:35 +0200 Subject: [PATCH] Fix for bad (re)named DV HDR10 releases. - Added: Fix for bad (re)named DV HDR releases. - Added: Not DV Condition to prevent double scoring for bad (re)named DV HDR10 Releases --- docs/json/radarr/hdr10.json | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/docs/json/radarr/hdr10.json b/docs/json/radarr/hdr10.json index c8882c819..137cffa80 100644 --- a/docs/json/radarr/hdr10.json +++ b/docs/json/radarr/hdr10.json @@ -19,7 +19,7 @@ "negate": true, "required": true, "fields": { - "value": "\\b(DV[ .]HDR10)\\b" + "value": "\\b(DV[ .]HDR10|HDR10[ .]DV)\\b" } }, { @@ -57,6 +57,15 @@ "fields": { "value": "\\bSDR(\\b|\\d)" } + }, + { + "name": "Not DV", + "implementation": "ReleaseTitleSpecification", + "negate": true, + "required": true, + "fields": { + "value": "\\b(dv|dovi|dolby[ .]?vision)\\b" + } } ] -} \ No newline at end of file +}