From 872b3a9042f13a8750d1a14d1d57768c0f798730 Mon Sep 17 00:00:00 2001 From: Natsumi Date: Mon, 27 Oct 2025 14:13:09 +1100 Subject: [PATCH] Fix error on receiving invite --- src/stores/notification.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/stores/notification.js b/src/stores/notification.js index 7d662dff..73baf7b3 100644 --- a/src/stores/notification.js +++ b/src/stores/notification.js @@ -137,9 +137,9 @@ export const useNotificationStore = defineStore('Notification', () => { // get instance name for invite const L = parseLocation(ref.details.worldId); if (L.isRealInstance) { - instanceRequest.getInstance({ + instanceRequest.getCachedInstance({ worldId: L.worldId, - instanceId: L.tag + instanceId: L.instanceId }); } }