diff --git a/src/NzbDrone.Core/Parser/ParsingService.cs b/src/NzbDrone.Core/Parser/ParsingService.cs index fd14d3adce..3eb9e36361 100644 --- a/src/NzbDrone.Core/Parser/ParsingService.cs +++ b/src/NzbDrone.Core/Parser/ParsingService.cs @@ -309,7 +309,11 @@ public ParsedEpisodeInfo ParseSpecialEpisodeTitle(string title, int tvRageId, Se } } - var series = _seriesService.FindByTitleInexact(title); + var series = GetSeries(title); + if (series == null) + { + series = _seriesService.FindByTitleInexact(title); + } if (series == null && tvRageId > 0) { series = _seriesService.FindByTvRageId(tvRageId);