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')); } } }