Fix reply preview "undefined" on embed description

This commit is contained in:
Cadence Ember 2023-10-14 19:27:45 +13:00
parent 1016fb1d67
commit b7f90db20a
4 changed files with 91 additions and 6 deletions

View file

@ -352,7 +352,7 @@ async function eventToMessage(event, guild, di) {
const contentPreviewChunks = chunk(
entities.decodeHTML5Strict( // Remove entities like & "
repliedToContent.replace(/.*<\/mx-reply>/, "") // Remove everything before replies, so just use the actual message body
.replace(/<blockquote>.*?<\/blockquote>/, "") // If the message starts with a blockquote, don't count it and use the message body afterwards
.replace(/^\s*<blockquote>.*?<\/blockquote>(.....)/s, "$1") // If the message starts with a blockquote, don't count it and use the message body afterwards
.replace(/(?:\n|<br>)+/g, " ") // Should all be on one line
.replace(/<span [^>]*data-mx-spoiler\b[^>]*>.*?<\/span>/g, "[spoiler]") // Good enough method of removing spoiler content. (I don't want to break out the HTML parser unless I have to.)
.replace(/<[^>]+>/g, "") // Completely strip all HTML tags and formatting.