From 1113c4c32a87b1abdf0ac09ee25719b09c304c13 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 --- 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)); } }