From f65835b87406854be55f847ebaecf78d8ebdba45 Mon Sep 17 00:00:00 2001 From: jack-mil <62065280+jack-mil@users.noreply.github.com> Date: Mon, 10 Jul 2023 23:50:46 -0400 Subject: [PATCH] New: Add Custom Format fields to Discord On Grab notifications (cherry picked from commit 3a9182b6a6a322a03666592f8e08d4afde11ee86) Closes #8790 --- src/NzbDrone.Core/Notifications/Discord/DiscordSettings.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/NzbDrone.Core/Notifications/Discord/DiscordSettings.cs b/src/NzbDrone.Core/Notifications/Discord/DiscordSettings.cs index c4688caa7..08c427fbf 100644 --- a/src/NzbDrone.Core/Notifications/Discord/DiscordSettings.cs +++ b/src/NzbDrone.Core/Notifications/Discord/DiscordSettings.cs @@ -19,8 +19,8 @@ namespace NzbDrone.Core.Notifications.Discord public DiscordSettings() { // Set Default Fields - GrabFields = new List { 0, 1, 2, 3, 5, 6, 7, 8, 9 }; - ImportFields = new List { 0, 1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12 }; + GrabFields = new[] { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12 }; + ImportFields = new[] { 0, 1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12 }; ManualInteractionFields = new[] { 0, 1, 2, 3, 5, 6, 7, 8, 9 }; }