From ffbb4d450547df86253fe79fbd11640df5beeee4 Mon Sep 17 00:00:00 2001 From: TRaSH Date: Sun, 10 Oct 2021 10:24:45 +0200 Subject: [PATCH] Copy/Paste Fix - Fixed: mistake from copy/paste --- docs/Sonarr/Sonarr-Release-Profile-RegEx.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/Sonarr/Sonarr-Release-Profile-RegEx.md b/docs/Sonarr/Sonarr-Release-Profile-RegEx.md index 7950723ae..8a880f50a 100644 --- a/docs/Sonarr/Sonarr-Release-Profile-RegEx.md +++ b/docs/Sonarr/Sonarr-Release-Profile-RegEx.md @@ -442,7 +442,7 @@ Add this to your `Must not contain (2)` Add this to your `Must not contain (2)` ```bash -/\b(\.WEB\.)\b/i +/\b(-scene)\b/i ``` #### Optional Ignore scene releases @@ -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(-scene)\b/i +/\b(\.WEB\.)\b/i ``` ------