Replace period with space in EPR.SeriesTitle

pull/3113/head
Mark McDowall 12 years ago
parent eebb086c60
commit 95dbce75dc

@ -8,6 +8,7 @@ namespace NzbDrone.Core.Model
public class EpisodeParseResult
{
public string SeriesTitle { get; set; }
public string CleanTitle
{
get

@ -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);

Loading…
Cancel
Save