mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-18 22:33:50 +02:00
Fix space at the end of status causing status change event
This commit is contained in:
@@ -14380,7 +14380,7 @@ speechSynthesis.getVoices();
|
||||
var regex = new RegExp(symbolList[key], 'g');
|
||||
newText = newText.replace(regex, key);
|
||||
}
|
||||
return newText.replace(/ {1,}/g, ' ');
|
||||
return newText.replace(/ {1,}/g, ' ').trimRight();
|
||||
};
|
||||
|
||||
$app.methods.checkCanInvite = function (location) {
|
||||
|
||||
Reference in New Issue
Block a user