mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-27 02:07:41 +00:00
Replace period with space in EPR.SeriesTitle
This commit is contained in:
parent
eebb086c60
commit
95dbce75dc
2 changed files with 2 additions and 1 deletions
|
@ -8,6 +8,7 @@ namespace NzbDrone.Core.Model
|
||||||
public class EpisodeParseResult
|
public class EpisodeParseResult
|
||||||
{
|
{
|
||||||
public string SeriesTitle { get; set; }
|
public string SeriesTitle { get; set; }
|
||||||
|
|
||||||
public string CleanTitle
|
public string CleanTitle
|
||||||
{
|
{
|
||||||
get
|
get
|
||||||
|
|
|
@ -150,7 +150,7 @@ namespace NzbDrone.Core
|
||||||
|
|
||||||
private static EpisodeParseResult ParseMatchCollection(MatchCollection matchCollection)
|
private static EpisodeParseResult ParseMatchCollection(MatchCollection matchCollection)
|
||||||
{
|
{
|
||||||
var seriesName = matchCollection[0].Groups["title"].Value;
|
var seriesName = matchCollection[0].Groups["title"].Value.Replace('.', ' ');
|
||||||
|
|
||||||
int airyear;
|
int airyear;
|
||||||
Int32.TryParse(matchCollection[0].Groups["airyear"].Value, out airyear);
|
Int32.TryParse(matchCollection[0].Groups["airyear"].Value, out airyear);
|
||||||
|
|
Loading…
Reference in a new issue