diff --git a/packages/reacord/library/make-message-update-payload.ts b/packages/reacord/library/make-message-update-payload.ts index 892d982..fd4473b 100644 --- a/packages/reacord/library/make-message-update-payload.ts +++ b/packages/reacord/library/make-message-update-payload.ts @@ -105,7 +105,8 @@ function applyEmbedChildren(embed: APIEmbed, children: Node[]) { embed.fields ??= [] embed.fields.push({ name: child.findInstanceOf(EmbedFieldNameNode)?.extractText() ?? "", - value: child.findInstanceOf(EmbedFieldValueNode)?.extractText() ?? "", + value: + child.findInstanceOf(EmbedFieldValueNode)?.extractText() || "_ _", // can't send an empty string inline: child.props.inline, }) }