1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-10-26 14:42:34 +02:00

Update CompletedDownloadService.cs

This commit is contained in:
Devin Buhl 2017-01-14 14:07:34 -05:00 committed by GitHub
parent 6c413d83eb
commit 170349c950

View File

@ -135,7 +135,7 @@ private void Import(TrackedDownload trackedDownload)
{
var statusMessages = importResults
.Where(v => v.Result != ImportResultType.Imported)
.Select(v => new TrackedDownloadStatusMessage(Path.GetFileName(v.ImportDecision.LocalEpisode.Path), v.Errors))
.Select(v => new TrackedDownloadStatusMessage(Path.GetFileName(v.ImportDecision.LocalMovie.Path), v.Errors))
.ToArray();
trackedDownload.Warn(statusMessages);