From 951a3525d689344725a90df692840a7806e81cca Mon Sep 17 00:00:00 2001 From: TRaSH Date: Sun, 24 Oct 2021 15:16:21 +0200 Subject: [PATCH] Update Sonarr-Release-Profile-RegEx.md - Fixed: proper recognizing of web with space and dots --- docs/Sonarr/Sonarr-Release-Profile-RegEx.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Sonarr/Sonarr-Release-Profile-RegEx.md b/docs/Sonarr/Sonarr-Release-Profile-RegEx.md index 0b0dbab6c..a1c53025e 100644 --- a/docs/Sonarr/Sonarr-Release-Profile-RegEx.md +++ b/docs/Sonarr/Sonarr-Release-Profile-RegEx.md @@ -452,7 +452,7 @@ Add this to your `Must not contain (2)` If you don't want to download so called scene releases. ```bash -/\b(\.WEB\.)\b/i +/\b([ .]WEB[ .])\b/i ``` ------