style: RegExec match->exec

This commit is contained in:
手瓜一十雪
2024-08-26 00:45:12 +08:00
parent 5486ffcdcc
commit 5f1d8fb99d
5 changed files with 10 additions and 7 deletions

View File

@@ -129,7 +129,7 @@ export class NTQQUserApi {
}
async getUserDetailInfo(uid: string): Promise<User> {
const retUser = await solveAsyncProblem(async (uid) => this.fetchUserDetailInfo(uid, UserDetailSource.KDB));
const retUser = await solveAsyncProblem(async (uid) => this.fetchUserDetailInfo(uid, UserDetailSource.KDB), uid);
if (retUser && retUser.uin !== '0') {
return retUser;
}