fix crash on citation with empty msg (only asset) (#92)
All checks were successful
ci/woodpecker/push/publish Pipeline was successful
All checks were successful
ci/woodpecker/push/publish Pipeline was successful
Co-authored-by: Mylloon <kennel.anri@tutanota.com> Reviewed-on: #92
This commit is contained in:
parent
d3cd6e1346
commit
751c1f1161
1 changed files with 4 additions and 1 deletions
|
@ -115,7 +115,10 @@ export default async (message: Message, client: Client) => {
|
|||
}
|
||||
|
||||
// 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
|
||||
let footer = `Posté le ${showDate(
|
||||
|
|
Loading…
Reference in a new issue