Fixed: Not removing seeded download if it was manual imported in some cases

This commit is contained in:
Mark McDowall 2020-05-30 10:18:17 -07:00
parent e2644c3847
commit b0e31629b5
1 changed files with 1 additions and 2 deletions

View File

@ -41,8 +41,7 @@ namespace NzbDrone.Core.Download
foreach (var trackedDownload in trackedDownloads)
{
_eventAggregator.PublishEvent(new DownloadCompletedEvent(trackedDownload,
trackedDownload.RemoteEpisode.Series.Id));
_eventAggregator.PublishEvent(new DownloadCanBeRemovedEvent(trackedDownload));
}
}