1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2024-12-26 17:59:14 +00:00

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

View file

@ -326,6 +326,8 @@ public static ParsedMovieInfo ParseMovieTitle(string title)
{
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))