mirror of
https://github.com/Sonarr/Sonarr
synced 2025-12-06 00:17:47 +01:00
Remote image links for Discord's manual interaction needed
This commit is contained in:
parent
3c8268c428
commit
1fea0b3d10
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue