diff --git a/html/src/app.js b/html/src/app.js index 1a941e6e..5c8dccfe 100644 --- a/html/src/app.js +++ b/html/src/app.js @@ -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_') {