From 770652fe6b2852f4fdda4fcd66196d4f4e0c0687 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, 26 May 2025 11:51:25 +0800 Subject: [PATCH] fix: remove debug --- src/onebot/api/msg.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/onebot/api/msg.ts b/src/onebot/api/msg.ts index c1f0f873..00eed17a 100644 --- a/src/onebot/api/msg.ts +++ b/src/onebot/api/msg.ts @@ -1209,9 +1209,6 @@ export class OneBotMsgApi { async waitGroupNotify(groupUin: string, memberUid?: string, operatorUid?: string) { const groupRole = this.core.apis.GroupApi.groupMemberCache.get(groupUin)?.get(this.core.selfInfo.uid.toString())?.role; const isAdminOrOwner = groupRole === 3 || groupRole === 4; - console.log('isAdminOrOwner:', isAdminOrOwner); - console.log('operatorUid:', operatorUid, typeof operatorUid); - console.log('memberUid:', memberUid); if (isAdminOrOwner && !operatorUid) { let dataNotify: GroupNotify | undefined; await this.core.eventWrapper.registerListen('NodeIKernelGroupListener/onGroupNotifiesUpdated',