From aa5869c498fbbca12c83d164f897182626c5978e Mon Sep 17 00:00:00 2001 From: Qstick Date: Wed, 25 Jan 2023 22:16:47 -0600 Subject: [PATCH] Replace unicode brackets --- src/NzbDrone.Core/Parser/Parser.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/NzbDrone.Core/Parser/Parser.cs b/src/NzbDrone.Core/Parser/Parser.cs index 6c4a18d93..291b90232 100644 --- a/src/NzbDrone.Core/Parser/Parser.cs +++ b/src/NzbDrone.Core/Parser/Parser.cs @@ -258,6 +258,8 @@ namespace NzbDrone.Core.Parser var releaseTitle = RemoveFileExtension(title); + releaseTitle = releaseTitle.Replace("【", "[").Replace("】", "]"); + var simpleTitle = SimpleTitleRegex.Replace(releaseTitle); // TODO: Quick fix stripping [url] - prefixes.