Fixed: Displaying warnings for automatic failed imports in queue

pull/5327/merge v2.10.1.4589
Bogdan 1 month ago
parent 84b91ba6c1
commit 9314eb34ab

@ -169,6 +169,11 @@ namespace NzbDrone.Core.Download
// Mark as failed to prevent further attempts at processing
trackedDownload.State = TrackedDownloadState.ImportFailed;
if (statusMessages.Any())
{
trackedDownload.Warn(statusMessages.ToArray());
}
// Publish event to notify album was imported incomplete
_eventAggregator.PublishEvent(new AlbumImportIncompleteEvent(trackedDownload));

Loading…
Cancel
Save