From a8db5b240d446595005daf6c7889b5873210061d Mon Sep 17 00:00:00 2001 From: bakerboy448 <55419169+bakerboy448@users.noreply.github.com> Date: Fri, 26 May 2023 21:45:53 -0500 Subject: [PATCH] Fixed: Webhook notification error messages (cherry picked from commit e9bbb0b9baf4decbeb65088463ce044586b9c3a5) Closes #3740 --- src/NzbDrone.Core/Notifications/NotificationService.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/NzbDrone.Core/Notifications/NotificationService.cs b/src/NzbDrone.Core/Notifications/NotificationService.cs index 18b1e0b75..2a7faba89 100644 --- a/src/NzbDrone.Core/Notifications/NotificationService.cs +++ b/src/NzbDrone.Core/Notifications/NotificationService.cs @@ -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); } } }