From 1fea0b3d1085aae8380dc84bae35b66b97236803 Mon Sep 17 00:00:00 2001 From: Bogdan Date: Mon, 6 Jan 2025 19:37:06 +0200 Subject: [PATCH] Remote image links for Discord's manual interaction needed --- src/NzbDrone.Core/Notifications/Discord/Discord.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/NzbDrone.Core/Notifications/Discord/Discord.cs b/src/NzbDrone.Core/Notifications/Discord/Discord.cs index 11ae1127f..540b8d420 100644 --- a/src/NzbDrone.Core/Notifications/Discord/Discord.cs +++ b/src/NzbDrone.Core/Notifications/Discord/Discord.cs @@ -554,7 +554,7 @@ public override void OnManualInteractionRequired(ManualInteractionRequiredMessag { embed.Thumbnail = new DiscordImage { - Url = series?.Images?.FirstOrDefault(x => x.CoverType == MediaCoverTypes.Poster)?.Url + Url = series?.Images?.FirstOrDefault(x => x.CoverType == MediaCoverTypes.Poster)?.RemoteUrl }; } @@ -562,7 +562,7 @@ public override void OnManualInteractionRequired(ManualInteractionRequiredMessag { embed.Image = new DiscordImage { - Url = series?.Images?.FirstOrDefault(x => x.CoverType == MediaCoverTypes.Fanart)?.Url + Url = series?.Images?.FirstOrDefault(x => x.CoverType == MediaCoverTypes.Fanart)?.RemoteUrl }; }