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))