From b0e31629b5f73e0e432ebbd804ae06a046b17b4a Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Sat, 30 May 2020 10:18:17 -0700 Subject: [PATCH] Fixed: Not removing seeded download if it was manual imported in some cases --- src/NzbDrone.Core/Download/DownloadProcessingService.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/NzbDrone.Core/Download/DownloadProcessingService.cs b/src/NzbDrone.Core/Download/DownloadProcessingService.cs index 21aec3216..c1c78895e 100644 --- a/src/NzbDrone.Core/Download/DownloadProcessingService.cs +++ b/src/NzbDrone.Core/Download/DownloadProcessingService.cs @@ -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)); } }