From dab93b1bfcd4880623edee6dc3ada0bb1b76ef87 Mon Sep 17 00:00:00 2001 From: pa Date: Sat, 4 Oct 2025 21:26:47 +0900 Subject: [PATCH] fix: add optional chaining for friend location tag check --- src/stores/vrcx.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stores/vrcx.js b/src/stores/vrcx.js index 3435fbab..d1cb5aea 100644 --- a/src/stores/vrcx.js +++ b/src/stores/vrcx.js @@ -324,7 +324,7 @@ export const useVrcxStore = defineStore('Vrcx', () => { instanceStore.cachedInstances.forEach((ref, id) => { if ( [...friendStore.friends.values()].some( - (f) => f.$location.tag === id + (f) => f.$location?.tag === id ) ) { return;