Compare commits

...

2 Commits

Author SHA1 Message Date
f67d7b35f1 Merge pull request 'Potential missing letter fix' (#46) from BordedDev/snek:bugfix/potential-lag-fix into main
Reviewed-on: #46
Reviewed-by: retoor <retoor@noreply@molodetz.nl>
2025-05-27 00:25:56 +02:00
BordedDev
8393a80022
Potential missing letter fix 2025-05-25 02:46:49 +02:00

View File

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