From 66832fc98aa599fd00870e01347eed39e2d90d78 Mon Sep 17 00:00:00 2001 From: qvink Date: Sun, 23 Mar 2025 09:41:03 -0600 Subject: [PATCH] removing whitespace trimming in trimWrongNames block --- public/script.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/public/script.js b/public/script.js index 7267d0296..001cc72fc 100644 --- a/public/script.js +++ b/public/script.js @@ -6047,9 +6047,6 @@ export function cleanUpMessage({ getMessage, isImpersonate, isContinue, displayI if (startIndex >= 0) { getMessage = getMessage.substring(0, startIndex); } - - // remove any whitespace at the beginning - getMessage = getMessage.trimStart(); } }