From a263558383f40c2dc89c62bc8d856b2e1cf46643 Mon Sep 17 00:00:00 2001 From: Leonardo Galli Date: Thu, 5 Jan 2017 11:36:26 +0100 Subject: [PATCH] Fix parsing of special editions without . in title. --- 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 19d4acf33..5e79ea3ad 100644 --- a/src/NzbDrone.Core/Parser/Parser.cs +++ b/src/NzbDrone.Core/Parser/Parser.cs @@ -326,6 +326,8 @@ namespace NzbDrone.Core.Parser { if (!ValidateBeforeParsing(title)) return null; + title = title.Replace(" ", "."); //TODO: Determine if this breaks something. However, it shouldn't. + Logger.Debug("Parsing string '{0}'", title); if (ReversedTitleRegex.IsMatch(title))