mirror of https://github.com/vector-im/riot-web
Fix suppression when message is empty
parent
5e6d0f6404
commit
072c767b68
|
@ -89,15 +89,15 @@ export function createMessageContent(
|
||||||
|
|
||||||
const htmlPrefix = isReply ? getHtmlReplyFallback(editedEvent) : '';
|
const htmlPrefix = isReply ? getHtmlReplyFallback(editedEvent) : '';
|
||||||
content.formatted_body = isEditing ? `${htmlPrefix} * ${formattedBody}` : formattedBody;
|
content.formatted_body = isEditing ? `${htmlPrefix} * ${formattedBody}` : formattedBody;
|
||||||
|
}
|
||||||
|
|
||||||
if (isEditing) {
|
if (isEditing) {
|
||||||
content['m.new_content'] = {
|
content['m.new_content'] = {
|
||||||
"msgtype": content.msgtype,
|
"msgtype": content.msgtype,
|
||||||
"body": body,
|
"body": body,
|
||||||
"format": "org.matrix.custom.html",
|
"format": "org.matrix.custom.html",
|
||||||
'formatted_body': formattedBody,
|
'formatted_body': formattedBody,
|
||||||
};
|
};
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const newRelation = isEditing ?
|
const newRelation = isEditing ?
|
||||||
|
|
Loading…
Reference in New Issue