mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-26 10:13:48 +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);
|
this.showAvatarDialog(avatarId);
|
||||||
return true;
|
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());
|
this.showUserDialog(input.trim());
|
||||||
return true;
|
return true;
|
||||||
} else if (input.substring(0, 5) === 'avtr_') {
|
} else if (input.substring(0, 5) === 'avtr_') {
|
||||||
|
|||||||
Reference in New Issue
Block a user