mirror of
https://github.com/Radarr/Radarr
synced 2024-12-26 01:38:24 +00:00
Fix parsing of special editions without . in title.
This commit is contained in:
parent
7d82e35650
commit
a263558383
1 changed files with 2 additions and 0 deletions
|
@ -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))
|
||||
|
|
Loading…
Reference in a new issue