You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
async function onMessage (msg) {
if (msg.age() > 60) {
console.log('Message discarded because its TOO OLD(than 1 minute)')
return
}
console.log(msg.toString())
await msg.say('主人不在,我会通知他的!');
return;
}
The text was updated successfully, but these errors were encountered:
我参考wechaty-getting-started的ding-dong-bot.js做了些修改。在接收到消息自动回复时,会无限循环执行mag.say操作,
The text was updated successfully, but these errors were encountered: