Fix reply fallback being included in edit m.new_content

Signed-off-by: Tulir Asokan <tulir@maunium.net>
This commit is contained in:
Tulir Asokan 2019-10-13 13:28:20 +03:00
parent 385e83fdbc
commit 2555fcb38f

View file

@ -75,7 +75,7 @@ function createEditContent(model, editedEvent) {
const newContent = {
"msgtype": isEmote ? "m.emote" : "m.text",
"body": plainPrefix + body,
"body": body,
};
const contentBody = {
msgtype: newContent.msgtype,
@ -85,7 +85,7 @@ function createEditContent(model, editedEvent) {
const formattedBody = htmlSerializeIfNeeded(model, {forceHTML: isReply});
if (formattedBody) {
newContent.format = "org.matrix.custom.html";
newContent.formatted_body = htmlPrefix + formattedBody;
newContent.formatted_body = formattedBody;
contentBody.format = newContent.format;
contentBody.formatted_body = `${htmlPrefix} * ${formattedBody}`;
}