mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-05-05 22:36:05 +02:00
fix: uncaught json undefined error
This commit is contained in:
+2
-2
@@ -84,11 +84,11 @@ const groupReq = {
|
|||||||
if (typeof ref === 'undefined') {
|
if (typeof ref === 'undefined') {
|
||||||
groupReq
|
groupReq
|
||||||
.getGroup(params)
|
.getGroup(params)
|
||||||
.catch(reject)
|
|
||||||
.then((args) => {
|
.then((args) => {
|
||||||
args.ref = groupStore.applyGroup(args.json);
|
args.ref = groupStore.applyGroup(args.json);
|
||||||
resolve(args);
|
resolve(args);
|
||||||
});
|
})
|
||||||
|
.catch(reject);
|
||||||
} else {
|
} else {
|
||||||
resolve({
|
resolve({
|
||||||
cache: true,
|
cache: true,
|
||||||
|
|||||||
Reference in New Issue
Block a user