mirror of https://github.com/vector-im/riot-web
Merge pull request #5517 from matrix-org/jryans/big-emoji-html
Look for emoji in the body that will be displayedpull/21833/head
commit
ee56560e33
|
@ -438,13 +438,14 @@ export function bodyToHtml(content: IContent, highlights: string[], opts: IOpts
|
||||||
delete sanitizeParams.textFilter;
|
delete sanitizeParams.textFilter;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const contentBody = isDisplayedWithHtml ? safeBody : strippedBody;
|
||||||
if (opts.returnString) {
|
if (opts.returnString) {
|
||||||
return isDisplayedWithHtml ? safeBody : strippedBody;
|
return contentBody;
|
||||||
}
|
}
|
||||||
|
|
||||||
let emojiBody = false;
|
let emojiBody = false;
|
||||||
if (!opts.disableBigEmoji && bodyHasEmoji) {
|
if (!opts.disableBigEmoji && bodyHasEmoji) {
|
||||||
let contentBodyTrimmed = strippedBody !== undefined ? strippedBody.trim() : '';
|
let contentBodyTrimmed = contentBody !== undefined ? contentBody.trim() : '';
|
||||||
|
|
||||||
// Ignore spaces in body text. Emojis with spaces in between should
|
// Ignore spaces in body text. Emojis with spaces in between should
|
||||||
// still be counted as purely emoji messages.
|
// still be counted as purely emoji messages.
|
||||||
|
|
Loading…
Reference in New Issue