【发布时间】:2020-05-05 16:28:59
【问题描述】:
我正在尝试删除我在 5 秒后发送的消息
msg.channel.send(Embed).then(messageReaction => {
messageReaction.react("❌");
messageReaction.react("✔️");
messageReaction.delete(5000); // This line causes the error
但它不起作用。这是我得到的错误:
> (node:54020) UnhandledPromiseRejectionWarning: TypeError [INVALID_TYPE]: Supplied options is not an object.
at Message.delete (C:\Users\Josh\Desktop\Discord Bot\node_modules\discord.js\src\structures\Message.js:501:44)
at C:\Users\Josh\Desktop\Discord Bot\index.js:45:29
at processTicksAndRejections (internal/process/task_queues.js:97:5)
【问题讨论】:
标签: javascript discord discord.js