Fixed: Activity->Queue didn't show manually downloaded specials for which the parser couldn't find an episode number.

This commit is contained in:
Taloth Saldono 2015-03-01 22:37:25 +01:00
parent 2e81e278e1
commit 7b0bc4334d
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ namespace NzbDrone.Core.Download.TrackedDownloads
var remoteEpisode = _parsingService.Map(parsedEpisodeInfo);
if (remoteEpisode.Series == null)
if (remoteEpisode.Series == null || !remoteEpisode.Episodes.Any())
{
var historyItems = _historyService.FindByDownloadId(downloadItem.DownloadId);