Fixed: Webhook notification error messages

(cherry picked from commit e9bbb0b9baf4decbeb65088463ce044586b9c3a5)

Closes #3740
This commit is contained in:
bakerboy448 2023-05-26 21:45:53 -05:00 committed by Bogdan
parent 2638c857b5
commit a8db5b240d
1 changed files with 2 additions and 2 deletions

View File

@ -221,7 +221,7 @@ namespace NzbDrone.Core.Notifications
}
catch (Exception ex)
{
_logger.Warn(ex, "Unable to send OnDelete notification to: " + notification.Definition.Name);
_logger.Warn(ex, "Unable to send OnAlbumDelete notification to: " + notification.Definition.Name);
}
}
}
@ -243,7 +243,7 @@ namespace NzbDrone.Core.Notifications
}
catch (Exception ex)
{
_logger.Warn(ex, "Unable to send OnDelete notification to: " + notification.Definition.Name);
_logger.Warn(ex, "Unable to send OnArtistDelete notification to: " + notification.Definition.Name);
}
}
}