From 60f79d79f8c4a5862e5c33c2d682f2a6650e7e1e Mon Sep 17 00:00:00 2001 From: TRaSH Date: Sat, 3 Apr 2021 16:46:07 +0200 Subject: [PATCH] Updated: Optional Ignore DoVi for WEBDL - Fixed recornizing DoVi after WEB-DL ```yml Updated: Sonarr - Release Profile RegEx (WEB-DL) - Updated: Optional Ignore DoVi for WEBDL - Fixed recornizing DoVi after WEB-DL ``` --- docs/Sonarr/V3/Sonarr-Release-Profile-RegEx.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/Sonarr/V3/Sonarr-Release-Profile-RegEx.md b/docs/Sonarr/V3/Sonarr-Release-Profile-RegEx.md index eebeba905..0c47200fc 100644 --- a/docs/Sonarr/V3/Sonarr-Release-Profile-RegEx.md +++ b/docs/Sonarr/V3/Sonarr-Release-Profile-RegEx.md @@ -411,7 +411,8 @@ Add this for example as [15] Add this to your `Must not contain (2)` ```bash -/\b(dv|dovi|dolby[ .]vision)\b.*(?=[ ._-]web[ ._-]?(dl|rip)\b)/i +/\b(dv|dovi|dolby[ .]vision)\b.*(?=[ ._-]web[ ._-]?(dl|rip)\b)/i, +/(?=[ ._-]web[ ._-]?(dl|rip)\b).*\b(dv|dovi|dolby[ .]vision)\b/i ``` ------