1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-04 11:51:45 +03:00

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

View File

@@ -55,7 +55,9 @@ export class MessageEventPreview implements IPreview {
} }
if (hasHtml) { 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); body = sanitizeForTranslation(body);