From 9415f4fcc3349128cd85b83ebe218b819c43ab87 Mon Sep 17 00:00:00 2001 From: Jerryplusy Date: Sun, 5 Oct 2025 23:20:24 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E4=BF=AE=E5=A4=8D=E7=AE=A1=E7=90=86?= =?UTF-8?q?=E5=91=98=E9=80=BB=E8=BE=91=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/auth.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/auth.js b/apps/auth.js index 811a174..0ea90ec 100644 --- a/apps/auth.js +++ b/apps/auth.js @@ -113,6 +113,8 @@ export class CarbonAuth extends plugin { //加群事件 Bot.on?.('notice.group.increase', async (e) => { if (e.isMaster) return true; + const key = `${e.group_id}_${e.user_id}`; + if (this.pending.get(key)) return true; await this.auth(e, e.group_id, e.user_id); }); }