Fix parsing of special editions without . in title.

This commit is contained in:
Leonardo Galli 2017-01-05 11:36:26 +01:00
parent 7d82e35650
commit a263558383
1 changed files with 2 additions and 0 deletions

View File

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