From 8393a80022477c0566b6ae1faaae20a7bc0b53d7 Mon Sep 17 00:00:00 2001 From: BordedDev <> Date: Sun, 25 May 2025 02:46:49 +0200 Subject: [PATCH] Potential missing letter fix --- src/snek/static/chat-input.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/snek/static/chat-input.js b/src/snek/static/chat-input.js index c356b20..e089e73 100644 --- a/src/snek/static/chat-input.js +++ b/src/snek/static/chat-input.js @@ -279,8 +279,7 @@ levenshteinDistance(a, b) { app.rpc && typeof app.rpc.updateMessageText === "function" ) { - this.value = this.replaceMentionsWithAuthors(this.value); - app.rpc.updateMessageText(this.messageUid, this.value); + app.rpc.updateMessageText(this.messageUid, this.replaceMentionsWithAuthors(this.value)); } }