diff --git a/src/NzbDrone.Core/Notifications/Webhook/WebhookBase.cs b/src/NzbDrone.Core/Notifications/Webhook/WebhookBase.cs index 2807912f2..bd378ae0f 100644 --- a/src/NzbDrone.Core/Notifications/Webhook/WebhookBase.cs +++ b/src/NzbDrone.Core/Notifications/Webhook/WebhookBase.cs @@ -241,7 +241,7 @@ namespace NzbDrone.Core.Notifications.Webhook private WebhookArtist GetArtist(Artist artist) { - if (artist == null) + if (artist?.Metadata?.Value == null) { return null; }