1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2025-02-22 05:50:56 +00:00

Fixed parsing specials with Scene.Title.S0x.Episode.Title format.

This commit is contained in:
Taloth Saldono 2015-03-03 01:08:53 +01:00
parent 46da14f3bf
commit d8662321be

View file

@ -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) if (series == null && tvRageId > 0)
{ {
series = _seriesService.FindByTvRageId(tvRageId); series = _seriesService.FindByTvRageId(tvRageId);