1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-17 15:02:34 +02:00

Fixed: Not removing seeded download if it was manual imported in some cases

Fixes #4474

Co-Authored-By: Mark McDowall <markus101@users.noreply.github.com>
This commit is contained in:
Qstick 2020-05-30 15:04:26 -04:00
parent 1209e3cefb
commit aefa4aa20b

View File

@ -40,7 +40,7 @@ private void RemoveCompletedDownloads()
foreach (var trackedDownload in trackedDownloads)
{
_eventAggregator.PublishEvent(new DownloadCompletedEvent(trackedDownload, trackedDownload.RemoteMovie.Movie.Id));
_eventAggregator.PublishEvent(new DownloadCanBeRemovedEvent(trackedDownload));
}
}