Fix suppression when message is empty
This commit is contained in:
parent
5e6d0f6404
commit
072c767b68
1 changed files with 8 additions and 8 deletions
|
@ -89,6 +89,7 @@ export function createMessageContent(
|
|||
|
||||
const htmlPrefix = isReply ? getHtmlReplyFallback(editedEvent) : '';
|
||||
content.formatted_body = isEditing ? `${htmlPrefix} * ${formattedBody}` : formattedBody;
|
||||
}
|
||||
|
||||
if (isEditing) {
|
||||
content['m.new_content'] = {
|
||||
|
@ -98,7 +99,6 @@ export function createMessageContent(
|
|||
'formatted_body': formattedBody,
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
const newRelation = isEditing ?
|
||||
{ ...relation, 'rel_type': 'm.replace', 'event_id': editedEvent.getId() }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue