From fc86215f11487495a57b0dcbb313bb392ece00c3 Mon Sep 17 00:00:00 2001 From: Qian23333 <119576779+Qian23333@users.noreply.github.com> Date: Sat, 16 Aug 2025 11:22:45 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E6=B6=88=E6=81=AF?= =?UTF-8?q?=E5=8F=91=E9=80=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/remind.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/apps/remind.js b/apps/remind.js index ef1913c..5ad6a1a 100644 --- a/apps/remind.js +++ b/apps/remind.js @@ -294,8 +294,7 @@ export class Remind extends ZZZPlugin { const messages = await this.checkUser(userId, userConfig, false, mockE); if (messages.length > 0) { - const user = Bot.pickUser(userId); - await user.sendMsg(messages.join('\n')); + await Bot.pickFriend(userId).sendMsg(messages.join('\n')); } } }