From 95dbce75dcac6a9670fe349d8796de22944a2279 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Wed, 19 Dec 2012 22:49:13 -0800 Subject: [PATCH] Replace period with space in EPR.SeriesTitle --- NzbDrone.Core/Model/EpisodeParseResult.cs | 1 + NzbDrone.Core/Parser.cs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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);