diff --git a/scripts/wichtelbot/endpoint/implementations/discord/discordUtils.ts b/scripts/wichtelbot/endpoint/implementations/discord/discordUtils.ts index 847a742392cca153cb09553c9df1cb90111c0f8a..ac288cf1b794f7a3129d39285e876b44f35e998b 100644 --- a/scripts/wichtelbot/endpoint/implementations/discord/discordUtils.ts +++ b/scripts/wichtelbot/endpoint/implementations/discord/discordUtils.ts @@ -59,7 +59,10 @@ export abstract class DiscordUtils } } - messageOptions.embeds = [sharedCompactEmbed]; + if (sharedCompactEmbed.fields.length > 0) + { + messageOptions.embeds = [sharedCompactEmbed]; + } } }