Problem in my code #6912
-
const Discord = require("discord.js"); Client.on("ready", () => { Client.on("messageCreate", message => {
}); Here's my code. I have a little problem with the 4° } from the end, it is underlined with red... Can you help me please ? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
hi, i found the issue, you forgot to close the hope i helped you :) |
Beta Was this translation helpful? Give feedback.
-
Thanks bro, it worked ! (Incredible that someone answered me so fast 😃)
‐‐‐‐‐‐‐ Original Message ‐‐‐‐‐‐‐
Le mardi 2 novembre 2021 à 11:48, stijnjw ***@***.***> a écrit :
… .
—
You are receiving this because you authored the thread.
Reply to this email directly, [view it on GitHub](#6912 (comment)), or [unsubscribe](https://github.com/notifications/unsubscribe-auth/AWGETGAOEVRF5HBE2JI2FY3UJ66WPANCNFSM5G6ER4IA).
Triage notifications on the go with GitHub Mobile for [iOS](https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675) or [Android](https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub).
|
Beta Was this translation helpful? Give feedback.
hi, i found the issue, you forgot to close the
await Client.on("messageCreate", message => { code });
insteat you did just
await Client.on("messageCreate", message => { code }
hope i helped you :)