From 3e5045e496451c36e6987b7816546dc0aec165ac 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 890f84994..eb18a3184 100644 --- a/src/NzbDrone.Core/Download/DownloadProcessingService.cs +++ b/src/NzbDrone.Core/Download/DownloadProcessingService.cs @@ -40,8 +40,7 @@ namespace NzbDrone.Core.Download foreach (var trackedDownload in trackedDownloads) { - _eventAggregator.PublishEvent(new DownloadCompletedEvent(trackedDownload, - trackedDownload.RemoteBook.Author.Id)); + _eventAggregator.PublishEvent(new DownloadCanBeRemovedEvent(trackedDownload)); } }