Bloonatics
Bloonatics
DIAdiscord.js - Imagine an app
Created by Kowareta on 3/8/2024 in #djs-questions
message update issue
This is a discord issue, not discord.js. If you're looking forward to getting a temporary workaround for the issue, you probably want to take a look at this to see if it works well for you. https://github.com/discordjs/discord.js/issues/10153#issuecomment-1986379529
14 replies
DIAdiscord.js - Imagine an app
Created by lexitorius on 2/23/2024 in #djs-questions
Reading reaction info
this won't work if you're fetching older messages (not cached), you need to fetch the users https://discord.com/channels/222078108977594368/1210680446740992121/1210790135990460426
17 replies
DIAdiscord.js - Imagine an app
Created by lexitorius on 2/23/2024 in #djs-questions
Reading reaction info
the part that you define reactions
17 replies
DIAdiscord.js - Imagine an app
Created by lexitorius on 2/23/2024 in #djs-questions
Reading reaction info
show what you have written
17 replies
DIAdiscord.js - Imagine an app
Created by lexitorius on 2/23/2024 in #djs-questions
Reading reaction info
you may need to fetch the users
17 replies
DIAdiscord.js - Imagine an app
Created by TOPRYUNO on 2/21/2024 in #djs-questions
This interaction Failed
wait, it's. customId in line one, not customid
9 replies
DIAdiscord.js - Imagine an app
Created by TOPRYUNO on 2/21/2024 in #djs-questions
This interaction Failed
if there's no error, try to add await interaction.deferUpdare() before doing any database operations and change interaction.update() to interaction.editReply()
9 replies
DIAdiscord.js - Imagine an app
Created by ! Vinnie... 🥀 on 2/21/2024 in #djs-questions
error
make sure they're properly defined
28 replies
DIAdiscord.js - Imagine an app
Created by ! Vinnie... 🥀 on 2/21/2024 in #djs-questions
error
data or ownerIDS is undefined
28 replies
DIAdiscord.js - Imagine an app
Created by ! Vinnie... 🥀 on 2/21/2024 in #djs-questions
error
Guild#ownerId is a string
28 replies
DIAdiscord.js - Imagine an app
Created by BoxWithout on 2/21/2024 in #djs-questions
Help collecting a button component
ok we all got it. this is another reason for people to actually spend some time to read the djs code from github to understand it better (docs and guide aren't enough)
28 replies
DIAdiscord.js - Imagine an app
Created by BoxWithout on 2/21/2024 in #djs-questions
Help collecting a button component
wait, the reply is a new message
28 replies
DIAdiscord.js - Imagine an app
Created by BoxWithout on 2/21/2024 in #djs-questions
Help collecting a button component
Yes, this post is just related to a wrong use of that method. They don't have to fetch the message for its id when they already have it.
28 replies
DIAdiscord.js - Imagine an app
Created by BoxWithout on 2/21/2024 in #djs-questions
Help collecting a button component
it's just because the current InteractionResponse#createMessageComponentCollector() applied an unnecessary filter for you
28 replies
DIAdiscord.js - Imagine an app
Created by BoxWithout on 2/21/2024 in #djs-questions
Help collecting a button component
actually you don't have to fetch the message, just call the InteractionCollector constructor
28 replies
DIAdiscord.js - Imagine an app
Created by BoxWithout on 2/21/2024 in #djs-questions
Help collecting a button component
your case is a ModalSubmitInteraction, so that's not their case
28 replies
DIAdiscord.js - Imagine an app
Created by BoxWithout on 2/21/2024 in #djs-questions
Help collecting a button component
the interaction type is CommandInteraction in the guide, i.e. they only want to collect interactions when MessageInteraction#id matches the original application command interaction id
28 replies
DIAdiscord.js - Imagine an app
Created by BoxWithout on 2/21/2024 in #djs-questions
Help collecting a button component
you should have a message id filter instead of a message interaction id filter, so call .createMessageComponentCollector() on a Message instead of a InteractionResponse in this case
28 replies