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
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ namespace NzbDrone.Core.Download
foreach (var trackedDownload in trackedDownloads)
{
_eventAggregator.PublishEvent(new DownloadCompletedEvent(trackedDownload, trackedDownload.RemoteMovie.Movie.Id));
_eventAggregator.PublishEvent(new DownloadCanBeRemovedEvent(trackedDownload));
}
}