mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 02:37:08 -07:00
Fixed: OnImportFailure using OnDownloadFailure enabled notifications
This commit is contained in:
parent
c229d73ddc
commit
772bd88efa
1 changed files with 1 additions and 2 deletions
|
@ -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))
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue