mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-22 15:53:23 +00:00
Fixed: Webhook notification error messages
(cherry picked from commit e9bbb0b9baf4decbeb65088463ce044586b9c3a5) Closes #3740
This commit is contained in:
parent
2638c857b5
commit
a8db5b240d
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue