New: (Notifiarr) Custom Formats in OnGrab

This commit is contained in:
bakerboy448 2022-07-12 08:14:35 -05:00
parent 8b3019821a
commit ced6586860
1 changed files with 2 additions and 0 deletions

View File

@ -48,6 +48,8 @@ namespace NzbDrone.Core.Notifications.Notifiarr
variables.Add("Radarr_Download_Client", message.DownloadClientName ?? string.Empty);
variables.Add("Radarr_Download_Client_Type", message.DownloadClientType ?? string.Empty);
variables.Add("Radarr_Download_Id", message.DownloadId ?? string.Empty);
variables.Add("Radarr_Release_CustomFormat", string.Join("|", remoteMovie.CustomFormats));
variables.Add("Radarr_Release_CustomFormatScore", remoteMovie.CustomFormatScore.ToString());
_proxy.SendNotification(variables, Settings);
}