mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-05-07 14:56:06 +02:00
Get group instances when not in group
This commit is contained in:
+1
-7
@@ -471,15 +471,12 @@ export const useGroupStore = defineStore('Group', () => {
|
||||
groupId
|
||||
});
|
||||
D.isGetGroupDialogGroupLoading = true;
|
||||
if (D.inGroup) {
|
||||
groupRequest
|
||||
.getGroupInstances({
|
||||
groupId
|
||||
})
|
||||
.then((args) => {
|
||||
if (
|
||||
state.groupDialog.id === args.params.groupId
|
||||
) {
|
||||
if (state.groupDialog.id === args.params.groupId) {
|
||||
instanceStore.applyGroupDialogInstances(
|
||||
args.json.instances
|
||||
);
|
||||
@@ -492,7 +489,6 @@ export const useGroupStore = defineStore('Group', () => {
|
||||
})
|
||||
.then((args1) => {
|
||||
json.world = args1.ref;
|
||||
return args1;
|
||||
});
|
||||
// get queue size etc
|
||||
instanceRequest.getInstance({
|
||||
@@ -500,10 +496,8 @@ export const useGroupStore = defineStore('Group', () => {
|
||||
instanceId: json.instanceId
|
||||
});
|
||||
}
|
||||
// });
|
||||
});
|
||||
}
|
||||
}
|
||||
nextTick(() => (D.isGetGroupDialogGroupLoading = false));
|
||||
return args;
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user