removing whitespace trimming in trimWrongNames block

This commit is contained in:
qvink
2025-03-23 09:41:03 -06:00
parent 36adb6992e
commit 66832fc98a

View File

@ -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();
}
}