Fix suppression when message is empty

This commit is contained in:
Florian Duros 2022-10-20 11:52:50 +02:00
parent 5e6d0f6404
commit 072c767b68
No known key found for this signature in database
GPG Key ID: 9700AA5870258A0B

View File

@ -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() }