mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-15 21:03:52 +02:00
direct access legacy user id's
https://github.com/pypy-vrc/VRCX/issues/425
This commit is contained in:
@@ -13187,7 +13187,10 @@ speechSynthesis.getVoices();
|
||||
this.showAvatarDialog(avatarId);
|
||||
return true;
|
||||
}
|
||||
} else if (input.substring(0, 4) === 'usr_') {
|
||||
} else if (
|
||||
input.substring(0, 4) === 'usr_' ||
|
||||
/^[A-Za-z0-9]{10}$/g.test(input)
|
||||
) {
|
||||
this.showUserDialog(input.trim());
|
||||
return true;
|
||||
} else if (input.substring(0, 5) === 'avtr_') {
|
||||
|
||||
Reference in New Issue
Block a user