mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 05:53:33 -07: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 @@ namespace NzbDrone.Core.Parser
|
||||||
{
|
{
|
||||||
if (!ValidateBeforeParsing(title)) return null;
|
if (!ValidateBeforeParsing(title)) return null;
|
||||||
|
|
||||||
|
title = title.Replace(" ", "."); //TODO: Determine if this breaks something. However, it shouldn't.
|
||||||
|
|
||||||
Logger.Debug("Parsing string '{0}'", title);
|
Logger.Debug("Parsing string '{0}'", title);
|
||||||
|
|
||||||
if (ReversedTitleRegex.IsMatch(title))
|
if (ReversedTitleRegex.IsMatch(title))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue