From 49b549640660998a8a5a9ac7bf322298a22a6b56 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=89=8B=E7=93=9C=E4=B8=80=E5=8D=81=E9=9B=AA?= Date: Thu, 5 Feb 2026 18:03:29 +0800 Subject: [PATCH] Revert "Lower NTQQ build check from 41679 to 39038" This reverts commit 280aac5c7547385ca21be737da7ff0aac98da431. --- packages/napcat-core/apis/friend.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/napcat-core/apis/friend.ts b/packages/napcat-core/apis/friend.ts index d3ea5d1f..a9c7b272 100644 --- a/packages/napcat-core/apis/friend.ts +++ b/packages/napcat-core/apis/friend.ts @@ -18,7 +18,7 @@ export class NTQQFriendApi { async getBuddyV2SimpleInfoMap () { const buddyService = this.context.session.getBuddyService(); let uids: string[] = []; - if (this.core.context.basicInfoWrapper.requireMinNTQQBuild('39038')) { + if (this.core.context.basicInfoWrapper.requireMinNTQQBuild('41679')) { const buddyListV2NT = await buddyService.getBuddyListV2('0', true, BuddyListReqType.KNOMAL); uids = buddyListV2NT.data.flatMap(item => item.buddyUids); } else { @@ -55,7 +55,7 @@ export class NTQQFriendApi { const buddyService = this.context.session.getBuddyService(); let uids: string[] = []; let buddyListV2: Awaited>['data']; - if (this.core.context.basicInfoWrapper.requireMinNTQQBuild('39038')) { + if (this.core.context.basicInfoWrapper.requireMinNTQQBuild('41679')) { buddyListV2 = (await buddyService.getBuddyListV2('0', true, BuddyListReqType.KNOMAL)).data; uids = buddyListV2.flatMap(item => item.buddyUids); } else {