1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00

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

View File

@ -61,7 +61,7 @@ public TrackedDownload TrackDownload(DownloadClientDefinition downloadClient, Do
var remoteEpisode = _parsingService.Map(parsedEpisodeInfo);
if (remoteEpisode.Series == null)
if (remoteEpisode.Series == null || !remoteEpisode.Episodes.Any())
{
var historyItems = _historyService.FindByDownloadId(downloadItem.DownloadId);