From 0685d56ea492041e1871cf27f600ddcc50b0c8fd Mon Sep 17 00:00:00 2001 From: Bogdan Date: Wed, 4 May 2022 14:55:48 +0300 Subject: [PATCH] fix regex word boundary --- 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 2e1d0df9e..9195c5973 100644 --- a/docs/Sonarr/Sonarr-Release-Profile-RegEx.md +++ b/docs/Sonarr/Sonarr-Release-Profile-RegEx.md @@ -497,7 +497,7 @@ Add this to your `Must not contain (2)` Add this to your `Must not contain (2)` ```bash -/^(?!.*(-deflate|-inflate))(?=.*([_. ]WEB[_. ]|\\bCAKES\\b|GGEZ|GGWP|GLHF)).*/i +/^(?!.*(-deflate|-inflate))(?=.*([_. ]WEB[_. ]|\bCAKES\b|GGEZ|GGWP|GLHF)).*/i ``` ------