From 63c5a1b5585fcd00d81a1f3805b3f4a0ce14c4e4 Mon Sep 17 00:00:00 2001 From: nuxen Date: Wed, 24 Aug 2022 11:32:04 +0200 Subject: [PATCH] Updated: Change to cleaner regex for `DTS-HD MA` Changed the regex for recognizing `DTS-HD MA` to make it look a bit nicer. --- docs/json/radarr/cf/dts-hd-ma.json | 2 +- docs/json/radarr/cf/dts.json | 2 +- docs/json/sonarr/cf/dts-hd-ma.json | 2 +- docs/json/sonarr/cf/dts.json | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/json/radarr/cf/dts-hd-ma.json b/docs/json/radarr/cf/dts-hd-ma.json index 11ecabcb7..3a7dd0350 100644 --- a/docs/json/radarr/cf/dts-hd-ma.json +++ b/docs/json/radarr/cf/dts-hd-ma.json @@ -10,7 +10,7 @@ "negate": false, "required": true, "fields": { - "value": "\\b(dts[-_. ]?(ma|hd[-_. ]?ma|hd|xll))\\b" + "value": "\\b(dts[-_. ]?(ma|hd([-_. ]?ma)?|xll))\\b" } }, { diff --git a/docs/json/radarr/cf/dts.json b/docs/json/radarr/cf/dts.json index 90cd76f4f..c796b7991 100644 --- a/docs/json/radarr/cf/dts.json +++ b/docs/json/radarr/cf/dts.json @@ -18,7 +18,7 @@ "negate": true, "required": true, "fields": { - "value": "\\b(dts[-_. ]?(ma|hd[-_. ]?ma|hd|xll))\\b" + "value": "\\b(dts[-_. ]?(ma|hd([-_. ]?ma)?|xll))\\b" } }, { diff --git a/docs/json/sonarr/cf/dts-hd-ma.json b/docs/json/sonarr/cf/dts-hd-ma.json index 614610f43..0a24545ed 100644 --- a/docs/json/sonarr/cf/dts-hd-ma.json +++ b/docs/json/sonarr/cf/dts-hd-ma.json @@ -10,7 +10,7 @@ "negate": false, "required": true, "fields": { - "value": "\\b(dts[-_. ]?(ma|hd[-_. ]?ma|hd|xll))\\b" + "value": "\\b(dts[-_. ]?(ma|hd([-_. ]?ma)?|xll))\\b" } }, { diff --git a/docs/json/sonarr/cf/dts.json b/docs/json/sonarr/cf/dts.json index a872d0cbd..60c1fca89 100644 --- a/docs/json/sonarr/cf/dts.json +++ b/docs/json/sonarr/cf/dts.json @@ -18,7 +18,7 @@ "negate": true, "required": true, "fields": { - "value": "\\b(dts[-_. ]?(ma|hd[-_. ]?ma|hd|xll))\\b" + "value": "\\b(dts[-_. ]?(ma|hd([-_. ]?ma)?|xll))\\b" } }, {