mirror of
https://github.com/Radarr/Radarr
synced 2025-12-15 12:55:14 +01:00
Fixed: On Import notifications for webhooks
Fixes #7084 Co-Authored-By: Mark McDowall <markus101@users.noreply.github.com>
This commit is contained in:
parent
544e942fe4
commit
3e353a6710
1 changed files with 2 additions and 2 deletions
|
|
@ -50,8 +50,8 @@ public override void OnDownload(DownloadMessage message)
|
|||
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
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue