1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-08 21:42:24 +03:00

fix missing null-guard

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
Michael Telatynski
2018-03-29 17:34:08 +01:00
parent b5ed08eba2
commit a390cecf92

View File

@@ -437,7 +437,7 @@ export function bodyToHtml(content, highlights, opts={}) {
} }
let formattedBody = content.formatted_body; 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; strippedBody = opts.stripReplyFallback ? ReplyThread.stripPlainReply(content.body) : content.body;
bodyHasEmoji = containsEmoji(isHtml ? formattedBody : content.body); bodyHasEmoji = containsEmoji(isHtml ? formattedBody : content.body);