前提・実現したいこと
discordで削除されたメッセージを特定のチャンネルに転送するような機能を実装中に以下のエラーメッセージが発生しました。
(node:12696) UnhandledPromiseRejectionWarning: ReferenceError: AbortController is not defined at RequestHandler.execute (C:\Users\KOYUKKII\node_modules\discord.js\src\rest\RequestHandler.js:172:15) at RequestHandler.execute (C:\Users\KOYUKKII\node_modules\discord.js\src\rest\RequestHandler.js:176:19) at RequestHandler.push (C:\Users\KOYUKKII\node_modules\discord.js\src\rest\RequestHandler.js:50:25) at async WebSocketManager.connect (C:\Users\KOYUKKII\node_modules\discord.js\src\client\websocket\WebSocketManager.js:128:9) at async Client.login (C:\Users\KOYUKKII\node_modules\discord.js\src\client\Client.js:245:7) (Use `node --trace-warnings ...` to show where the warning was created) (node:12696) 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(). To terminate the node process on unhandled promise rejection, use the CLI flag `--unhandled-rejections=strict` (see https://nodejs.org/api/cli.html#cli_unhandled_rejections_mode). (rejection id: 2) (node:12696) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.
該当のソースコード
discord.js
1const { Client, Intents } = require('discord.js'); 2const client = new Client({ intents: [Intents.FLAGS.GUILDS] }); 3 4client.on('messageDelete', ctx => { 5 // dotenv で .envから権限管理ロールを吸ってくる 6 const permission = process.env['882751708323807262'] 7 8 if (!permission) { 9 return 10 } 11 12 if (!ctx.member?.roles.cache.has(permission)) { 13 return 14 } 15 16 const author = ctx.author?.tag 17 const content = ctx.content 18 19 if (ctx.author?.bot) { 20 ctx.channel.send(`${content}`) 21 return 22 } 23 24 message.guild.channels.cache.get('882030870486216775').send(`${author} ${content}`) 25}) 26 27client.login("トークンのため隠します")
試したこと
初めてのBOT作成のため、本を見ながらいろいろ試しましたが、とうとう行き詰ってしまいました。。
補足情報(FW/ツールのバージョンなど)
Atomを使用しています。