fix crash on citation with empty msg (only asset)
All checks were successful
ci/woodpecker/push/publish Pipeline was successful

This commit is contained in:
Mylloon 2023-04-25 13:29:31 +02:00
parent d3cd6e1346
commit 036d8c1d47
Signed by: Anri
GPG key ID: A82D63DFF8D1317F

View file

@ -115,7 +115,10 @@ export default async (message: Message, client: Client) => {
} }
// Description as post content // Description as post content
embed.setDescription(quoted_post?.content ?? ""); if (quoted_post?.content) {
// Only if content exists and length > 0
embed.setDescription(quoted_post?.content);
}
// Footer // Footer
let footer = `Posté le ${showDate( let footer = `Posté le ${showDate(