From 051af8a9a6d8659cb7d7cfc65ac6ce7936da3ca3 Mon Sep 17 00:00:00 2001 From: Qstick Date: Sat, 12 Dec 2020 22:03:06 -0500 Subject: [PATCH] Fixed: Not removing seeded download if it was manual imported in some cases Co-Authored-By: Mark McDowall Signed-off-by: Robin Dadswell --- src/NzbDrone.Core/Download/DownloadProcessingService.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/NzbDrone.Core/Download/DownloadProcessingService.cs b/src/NzbDrone.Core/Download/DownloadProcessingService.cs index 3b1b5e1d6..eb18a3184 100644 --- a/src/NzbDrone.Core/Download/DownloadProcessingService.cs +++ b/src/NzbDrone.Core/Download/DownloadProcessingService.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Linq; using NLog; using NzbDrone.Core.Configuration; @@ -40,7 +40,7 @@ namespace NzbDrone.Core.Download foreach (var trackedDownload in trackedDownloads) { - _eventAggregator.PublishEvent(new DownloadCompletedEvent(trackedDownload)); + _eventAggregator.PublishEvent(new DownloadCanBeRemovedEvent(trackedDownload)); } }