mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-10-30 23:42:33 +01: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 @@ 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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user