From ced658686016f0c0ccb2d747f386f34ac14973d5 Mon Sep 17 00:00:00 2001 From: bakerboy448 <55419169+bakerboy448@users.noreply.github.com> Date: Tue, 12 Jul 2022 08:14:35 -0500 Subject: [PATCH] New: (Notifiarr) Custom Formats in OnGrab --- src/NzbDrone.Core/Notifications/Notifiarr/Notifiarr.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/NzbDrone.Core/Notifications/Notifiarr/Notifiarr.cs b/src/NzbDrone.Core/Notifications/Notifiarr/Notifiarr.cs index 981b09c61..409687ed1 100644 --- a/src/NzbDrone.Core/Notifications/Notifiarr/Notifiarr.cs +++ b/src/NzbDrone.Core/Notifications/Notifiarr/Notifiarr.cs @@ -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); }