fix: uncaught json undefined error

This commit is contained in:
pa
2025-09-13 01:46:07 +09:00
committed by Natsumi
parent d656280248
commit c91fec4d9d
+2 -2
View File
@@ -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,