From aefa4aa20b3d24340173b0613df2cde1b0d745c8 Mon Sep 17 00:00:00 2001 From: Qstick Date: Sat, 30 May 2020 15:04:26 -0400 Subject: [PATCH] Fixed: Not removing seeded download if it was manual imported in some cases Fixes #4474 Co-Authored-By: Mark McDowall --- src/NzbDrone.Core/Download/DownloadProcessingService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Download/DownloadProcessingService.cs b/src/NzbDrone.Core/Download/DownloadProcessingService.cs index a0eb18ec9..0b85b7278 100644 --- a/src/NzbDrone.Core/Download/DownloadProcessingService.cs +++ b/src/NzbDrone.Core/Download/DownloadProcessingService.cs @@ -40,7 +40,7 @@ namespace NzbDrone.Core.Download foreach (var trackedDownload in trackedDownloads) { - _eventAggregator.PublishEvent(new DownloadCompletedEvent(trackedDownload, trackedDownload.RemoteMovie.Movie.Id)); + _eventAggregator.PublishEvent(new DownloadCanBeRemovedEvent(trackedDownload)); } }