diff --git a/NzbDrone.Core/Model/EpisodeParseResult.cs b/NzbDrone.Core/Model/EpisodeParseResult.cs index 991e7a16f..59ab062d6 100644 --- a/NzbDrone.Core/Model/EpisodeParseResult.cs +++ b/NzbDrone.Core/Model/EpisodeParseResult.cs @@ -8,6 +8,7 @@ namespace NzbDrone.Core.Model public class EpisodeParseResult { public string SeriesTitle { get; set; } + public string CleanTitle { get diff --git a/NzbDrone.Core/Parser.cs b/NzbDrone.Core/Parser.cs index 44dc8128b..be5df9131 100644 --- a/NzbDrone.Core/Parser.cs +++ b/NzbDrone.Core/Parser.cs @@ -150,7 +150,7 @@ namespace NzbDrone.Core private static EpisodeParseResult ParseMatchCollection(MatchCollection matchCollection) { - var seriesName = matchCollection[0].Groups["title"].Value; + var seriesName = matchCollection[0].Groups["title"].Value.Replace('.', ' '); int airyear; Int32.TryParse(matchCollection[0].Groups["airyear"].Value, out airyear);