前提・実現したいこと
Discord.jsで以下のコードが動きません。
テストのために一番シンプルにしてもどこが悪いのかわかりません。
発生している問題・エラーメッセージ
(node:18295) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 3)
該当のソースコード
js
1client.on("message", async message => { 2 if (message.content === "!del") { 3 const messages = await message.channel.messages.fetch({ limit: 10 }) 4 message.channel.bulkDelete(messages) 5 } 6 } 7}); 8
エラーメッセージがこれより前のものじゃないと意味ないです...