Fixed: On Import notifications for webhooks

Fixes #7084

Co-Authored-By: Mark McDowall <markus101@users.noreply.github.com>
This commit is contained in:
Qstick 2022-03-06 18:01:33 -06:00
parent 544e942fe4
commit 3e353a6710
1 changed files with 2 additions and 2 deletions

View File

@ -50,8 +50,8 @@ namespace NzbDrone.Core.Notifications.Webhook
RemoteMovie = new WebhookRemoteMovie(message.Movie),
MovieFile = new WebhookMovieFile(movieFile),
IsUpgrade = message.OldMovieFiles.Any(),
DownloadClient = message.DownloadClientInfo.Name,
DownloadClientType = message.DownloadClientInfo.Type,
DownloadClient = message.DownloadClientInfo?.Name,
DownloadClientType = message.DownloadClientInfo?.Type,
DownloadId = message.DownloadId
};