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:
parent
2e81e278e1
commit
7b0bc4334d
@ -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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user