1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-19 05:22:13 +03:00

turn flag into options object

This commit is contained in:
Bruno Windels
2019-07-08 16:55:56 +02:00
parent e601037cd2
commit f6e71b2335
2 changed files with 3 additions and 3 deletions

View File

@@ -90,7 +90,7 @@ function createEditContent(model, editedEvent) {
body: `${plainPrefix} * ${body}`,
};
const formattedBody = htmlSerializeIfNeeded(model, /*forceHtml=*/ isReply);
const formattedBody = htmlSerializeIfNeeded(model, {forceHTML: isReply});
if (formattedBody) {
newContent.format = "org.matrix.custom.html";
newContent.formatted_body = htmlPrefix + formattedBody;