From 7b0bc4334daeadcb439e53e472cda60ba2940c50 Mon Sep 17 00:00:00 2001 From: Taloth Saldono Date: Sun, 1 Mar 2015 22:37:25 +0100 Subject: [PATCH] Fixed: Activity->Queue didn't show manually downloaded specials for which the parser couldn't find an episode number. --- .../Download/TrackedDownloads/TrackedDownloadService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Download/TrackedDownloads/TrackedDownloadService.cs b/src/NzbDrone.Core/Download/TrackedDownloads/TrackedDownloadService.cs index bb34adbe7..d8d9e802a 100644 --- a/src/NzbDrone.Core/Download/TrackedDownloads/TrackedDownloadService.cs +++ b/src/NzbDrone.Core/Download/TrackedDownloads/TrackedDownloadService.cs @@ -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);