Compare commits

..

No commits in common. "f67d7b35f160ae9877f8d973d5102ab93295eb45" and "6bbbc41360fd718205ce2a5b527477fb2836d688" have entirely different histories.

View File

@ -279,7 +279,8 @@ levenshteinDistance(a, b) {
app.rpc && app.rpc &&
typeof app.rpc.updateMessageText === "function" typeof app.rpc.updateMessageText === "function"
) { ) {
app.rpc.updateMessageText(this.messageUid, this.replaceMentionsWithAuthors(this.value)); this.value = this.replaceMentionsWithAuthors(this.value);
app.rpc.updateMessageText(this.messageUid, this.value);
} }
} }