Fixed: Don't process downloads removed from the client

This commit is contained in:
Mark McDowall 2020-03-03 20:32:06 -08:00 committed by ta264
parent f7c05d98a9
commit fed67044f0

View file

@ -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();