Merge pull request #5101 from matrix-org/t3chguy/fix/14934
Fix exception when stripping replies from an event with a non-string bodypull/21833/head
commit
cacb0af5a2
|
@ -421,7 +421,7 @@ export function bodyToHtml(content: IContent, highlights: string[], opts: IOpts
|
||||||
}
|
}
|
||||||
|
|
||||||
let formattedBody = typeof content.formatted_body === 'string' ? content.formatted_body : null;
|
let formattedBody = typeof content.formatted_body === 'string' ? content.formatted_body : null;
|
||||||
const plainBody = typeof content.body === 'string' ? content.body : null;
|
const plainBody = typeof content.body === 'string' ? content.body : "";
|
||||||
|
|
||||||
if (opts.stripReplyFallback && formattedBody) formattedBody = ReplyThread.stripHTMLReply(formattedBody);
|
if (opts.stripReplyFallback && formattedBody) formattedBody = ReplyThread.stripHTMLReply(formattedBody);
|
||||||
strippedBody = opts.stripReplyFallback ? ReplyThread.stripPlainReply(plainBody) : plainBody;
|
strippedBody = opts.stripReplyFallback ? ReplyThread.stripPlainReply(plainBody) : plainBody;
|
||||||
|
|
Loading…
Reference in New Issue