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