From 1e579858b8011cf424969984b29cdc06cd06de54 Mon Sep 17 00:00:00 2001
From: yota <610991622@qq.com>
Date: Mon, 19 Aug 2024 09:47:24 +0800
Subject: [PATCH] =?UTF-8?q?ws=E4=BF=AE=E5=A4=8D=E5=BF=85=E9=A1=BBno=5Fcach?=
 =?UTF-8?q?e=E5=8F=82=E6=95=B0?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 src/onebot11/action/group/GetGroupList.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/onebot11/action/group/GetGroupList.ts b/src/onebot11/action/group/GetGroupList.ts
index b071085..08c5775 100644
--- a/src/onebot11/action/group/GetGroupList.ts
+++ b/src/onebot11/action/group/GetGroupList.ts
@@ -12,7 +12,7 @@ class GetGroupList extends BaseAction<Payload, OB11Group[]> {
   actionName = ActionName.GetGroupList
 
   protected async _handle(payload: Payload) {
-    const groupList = await NTQQGroupApi.getGroups(payload?.no_cache === true || payload.no_cache === 'true')
+    const groupList = await NTQQGroupApi.getGroups(payload?.no_cache === true || payload?.no_cache === 'true')
     return OB11Constructor.groups(groupList)
   }
 }