From fed67044f029e2c1a8015380a834150dccd9efa6 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Tue, 3 Mar 2020 20:32:06 -0800 Subject: [PATCH] Fixed: Don't process downloads removed from the client --- src/NzbDrone.Core/Download/DownloadProcessingService.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/NzbDrone.Core/Download/DownloadProcessingService.cs b/src/NzbDrone.Core/Download/DownloadProcessingService.cs index 051035f4c..97848add4 100644 --- a/src/NzbDrone.Core/Download/DownloadProcessingService.cs +++ b/src/NzbDrone.Core/Download/DownloadProcessingService.cs @@ -35,7 +35,6 @@ public DownloadProcessingService(IConfigService configService, public void Execute(ProcessMonitoredDownloadsCommand message) { var enableCompletedDownloadHandling = _configService.EnableCompletedDownloadHandling; - var removeCompletedDownloads = _configService.RemoveCompletedDownloads; var trackedDownloads = _trackedDownloadService.GetTrackedDownloads() .Where(t => t.IsTrackable) .ToList();