mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-18 06:35:35 +08:00
isHtml makes no sense if there is no formatted_body
this is a bug pre-replies but replies exacerbates it Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
parent
df56a67fda
commit
3b02766be9
@ -414,7 +414,7 @@ class TextHighlighter extends BaseHighlighter {
|
||||
* opts.stripReplyFallback: optional argument specifying the event is a reply and so fallback needs removing
|
||||
*/
|
||||
export function bodyToHtml(content, highlights, opts={}) {
|
||||
const isHtml = (content.format === "org.matrix.custom.html");
|
||||
const isHtml = (content.format === "org.matrix.custom.html") && content.formatted_body;
|
||||
let body;
|
||||
if (isHtml) {
|
||||
body = content.formatted_body;
|
||||
|
Loading…
Reference in New Issue
Block a user