1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2024-12-22 07:42:28 +00:00

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

View file

@ -221,7 +221,7 @@ public void Handle(AlbumDeletedEvent message)
}
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 @@ public void Handle(ArtistsDeletedEvent message)
}
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);
}
}
}