From c91fec4d9d5883e324679cf3a9e330050f626dcb Mon Sep 17 00:00:00 2001 From: pa Date: Sat, 13 Sep 2025 01:46:07 +0900 Subject: [PATCH] fix: uncaught json undefined error --- src/api/group.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/api/group.js b/src/api/group.js index 6188987d..6ab192fd 100644 --- a/src/api/group.js +++ b/src/api/group.js @@ -84,11 +84,11 @@ const groupReq = { if (typeof ref === 'undefined') { groupReq .getGroup(params) - .catch(reject) .then((args) => { args.ref = groupStore.applyGroup(args.json); resolve(args); - }); + }) + .catch(reject); } else { resolve({ cache: true,