From c3d4698af336f09482791c12b1594d5383d36de9 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: Mon, 28 Oct 2024 21:34:13 +0800 Subject: [PATCH] try fix: error --- src/core/apis/group.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/apis/group.ts b/src/core/apis/group.ts index 174b7db3..facfccc7 100644 --- a/src/core/apis/group.ts +++ b/src/core/apis/group.ts @@ -348,7 +348,7 @@ export class NTQQGroupApi { if (res.hasNext || !res.finish || res.infos.size === 0) { res = await this.tryGetGroupMembersV2(false, groupQQ, num); } - if ((res.infos.size === 0 || res.infos.size === 30) && res.finish) { + if ((res.infos.size === 0 || res.infos.size === 30) && !res.finish) { res = await this.tryGetGroupMembersV2(true, groupQQ, num); } return res.infos;