Small fixes

This commit is contained in:
Natsumi
2025-11-09 20:48:42 +11:00
parent ddb62d7a31
commit 9069d8cefe
6 changed files with 36 additions and 16 deletions
+6 -1
View File
@@ -565,7 +565,12 @@ export const useVrcxStore = defineStore('Vrcx', () => {
let shouldFocusWindow = true;
switch (command) {
case 'world':
searchStore.directAccessWorld(input.replace('world/', ''));
if (
!searchStore.directAccessWorld(input.replace('world/', ''))
) {
// fallback for mangled world ids
worldStore.showWorldDialog(commandArg);
}
break;
case 'avatar':
avatarStore.showAvatarDialog(commandArg);