From 51589d0eaefb6759432de9e7a77a7fe9645c2e31 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: Sat, 31 Aug 2024 22:11:18 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E7=BE=A4=E7=B2=BE=E5=8D=8E=E4=B8=8A?= =?UTF-8?q?=E9=99=90=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/core/apis/webapi.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/apis/webapi.ts b/src/core/apis/webapi.ts index ffe9aa20..f7af0c91 100644 --- a/src/core/apis/webapi.ts +++ b/src/core/apis/webapi.ts @@ -35,7 +35,7 @@ export class NTQQWebApi { } async getGroupEssenceMsgAll(GroupCode: string) { const ret: GroupEssenceMsgRet[] = []; - for (let i = 0; i < 4; i++) { + for (let i = 0; i < 20; i++) { const data = await this.getGroupEssenceMsg(GroupCode, i, 50); if (!data) break; ret.push(data);