fix: Uid转Uin

修复设置管理、禁言等数个API失效
对查询企业陌生人信息进行容错
This commit is contained in:
Alen
2024-08-17 00:17:51 +08:00
parent 62917a1e55
commit d6c6216fc1
2 changed files with 3 additions and 3 deletions

View File

@@ -187,9 +187,9 @@ export class NTQQUserApi {
//后期改成流水线处理
async getUidByUinV2(Uin: string) {
let uid = (await this.context.session.getProfileService().getUidByUin('FriendsServiceImpl', [Uin])).get(Uin);
let uid = (await this.context.session.getGroupService().getUidByUins([Uin])).uids.get(Uin);
if (uid) return uid;
uid = (await this.context.session.getGroupService().getUidByUins([Uin])).uids.get(Uin);
uid = (await this.context.session.getProfileService().getUidByUin('FriendsServiceImpl', [Uin])).get(Uin);
if (uid) return uid;
uid = (await this.context.session.getUixConvertService().getUid([Uin])).uidInfo.get(Uin);
if (uid) return uid;