From 772bd88efa137b1f32ec9c9fd9e0e396a1e6ff9e Mon Sep 17 00:00:00 2001 From: Qstick Date: Fri, 22 Mar 2019 20:46:09 -0400 Subject: [PATCH] Fixed: OnImportFailure using OnDownloadFailure enabled notifications --- src/NzbDrone.Core/Notifications/NotificationService.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/NzbDrone.Core/Notifications/NotificationService.cs b/src/NzbDrone.Core/Notifications/NotificationService.cs index da69c88ad..68cee8c51 100644 --- a/src/NzbDrone.Core/Notifications/NotificationService.cs +++ b/src/NzbDrone.Core/Notifications/NotificationService.cs @@ -227,7 +227,6 @@ namespace NzbDrone.Core.Notifications Language = message.Language, SourceTitle = message.SourceTitle, Message = message.Message - }; foreach (var notification in _notificationFactory.OnDownloadFailureEnabled()) @@ -247,7 +246,7 @@ namespace NzbDrone.Core.Notifications Message = GetAlbumIncompleteImportMessage(message.TrackedDownload.DownloadItem.Title), }; - foreach (var notification in _notificationFactory.OnDownloadFailureEnabled()) + foreach (var notification in _notificationFactory.OnImportFailureEnabled()) { if (ShouldHandleArtist(notification.Definition, message.TrackedDownload.RemoteAlbum.Artist)) {