mirror of https://github.com/vector-im/riot-web
fix missing null-guard
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>pull/21833/head
parent
b5ed08eba2
commit
a390cecf92
|
@ -437,7 +437,7 @@ export function bodyToHtml(content, highlights, opts={}) {
|
|||
}
|
||||
|
||||
let formattedBody = content.formatted_body;
|
||||
if (opts.stripReplyFallback) formattedBody = ReplyThread.stripHTMLReply(content.formatted_body);
|
||||
if (opts.stripReplyFallback && formattedBody) formattedBody = ReplyThread.stripHTMLReply(formattedBody);
|
||||
strippedBody = opts.stripReplyFallback ? ReplyThread.stripPlainReply(content.body) : content.body;
|
||||
|
||||
bodyHasEmoji = containsEmoji(isHtml ? formattedBody : content.body);
|
||||
|
|
Loading…
Reference in New Issue