Fixed: Parsing of queued specials from download client queue

This commit is contained in:
Mark McDowall
2016-01-05 22:56:34 -08:00
parent b62ef0c40c
commit 8373024f9d
3 changed files with 65 additions and 3 deletions

View File

@@ -305,14 +305,17 @@ namespace NzbDrone.Core.Parser
}
var series = GetSeries(title);
if (series == null)
{
series = _seriesService.FindByTitleInexact(title);
}
if (series == null && tvdbId > 0)
{
series = _seriesService.FindByTvdbId(tvdbId);
}
if (series == null && tvRageId > 0)
{
series = _seriesService.FindByTvRageId(tvRageId);