先把获取用户信息注释掉

This commit is contained in:
Xu Chang 2023-02-08 22:44:14 +08:00
parent 67ab3b4f4c
commit 6c92d78ea5
1 changed files with 1 additions and 1 deletions

View File

@ -820,7 +820,7 @@ export async function loginWechat<ED extends EntityDict, Cxt extends BackendRunt
const tokenId = await loginLogic();
const [tokenInfo] = await loadTokenInfo<ED, Cxt>(tokenId, context);
assert(tokenInfo.entity === 'wechatUser');
await tryRefreshWechatPublicUserInfo<ED, Cxt>(tokenInfo.entityId!, context);
// await tryRefreshWechatPublicUserInfo<ED, Cxt>(tokenInfo.entityId!, context);
return tokenId;
}