mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-13 03:43:50 +02:00
Fix Quest auto invite and accept invite request
This commit is contained in:
@@ -235,6 +235,13 @@ export const useNotificationStore = defineStore('Notification', () => {
|
||||
if (locationStore.lastLocation.location === 'traveling') {
|
||||
currentLocation = locationStore.lastLocationDestination;
|
||||
}
|
||||
if (!currentLocation) {
|
||||
// game log disabled, use API location
|
||||
currentLocation = userStore.currentUser.$locationTag;
|
||||
if (userStore.currentUser.$travelingToLocation) {
|
||||
currentLocation = userStore.currentUser.$travelingToLocation;
|
||||
}
|
||||
}
|
||||
if (!currentLocation) {
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -536,6 +536,10 @@
|
||||
if (lastLocation.value.location === 'traveling') {
|
||||
currentLocation = lastLocationDestination.value;
|
||||
}
|
||||
if (!currentLocation) {
|
||||
// game log disabled, use API location
|
||||
currentLocation = currentUser.$locationTag;
|
||||
}
|
||||
const L = parseLocation(currentLocation);
|
||||
worldRequest
|
||||
.getCachedWorld({
|
||||
|
||||
Reference in New Issue
Block a user