Improve room list message previews (#7224)

This commit is contained in:
Michael Telatynski 2021-11-29 17:18:04 +00:00 committed by GitHub
parent 87e8e3d6ef
commit 768e270f3f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -55,7 +55,9 @@ export class MessageEventPreview implements IPreview {
}
if (hasHtml) {
body = getHtmlText(body);
const sanitised = getHtmlText(body.replace(/<br\/?>/gi, "\n")); // replace line breaks before removing them
// run it through DOMParser to fixup encoded html entities
body = new DOMParser().parseFromString(sanitised, "text/html").documentElement.textContent;
}
body = sanitizeForTranslation(body);