From d3d256fdc095ece1174518b8fe95113628811164 Mon Sep 17 00:00:00 2001 From: TRaSH Date: Sat, 2 Jul 2022 13:09:28 +0200 Subject: [PATCH] Fixed DTS-X copy/paste error - Fixed: `DTS-X` copy/paste error taken from the json - json needs to have a extra `\` before a special character. --- PMM/overlays/audio_codec.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PMM/overlays/audio_codec.yml b/PMM/overlays/audio_codec.yml index 0991407..e48112f 100644 --- a/PMM/overlays/audio_codec.yml +++ b/PMM/overlays/audio_codec.yml @@ -239,7 +239,7 @@ overlays: slug: x plex_all: true filters: - audio_track_title.regex: '(?i)dts[ ._:-]?x(?!\\d)' + audio_track_title.regex: '(?i)dts[-. ]?x(?!\d)' DTS-X-Filepath: template: @@ -249,4 +249,4 @@ overlays: slug: x plex_all: true filters: - filepath.regex: '(?i)dts[ ._:-]?x(?!\\d)' + filepath.regex: '(?i)dts[-. ]?x(?!\d)'