-
Which package is this bug report for?discord.js Issue descriptionSo, I am trying to do a verification command for my communities bot and I'm having issues fetching all guild users to make a "verify all" command since this is a new bot in an existing discord with 900ish members When I try run my command it waits for a few mins then gives me this error. I am using the newest version of node.js. Error verifying users: Error [GuildMembersTimeout]: Members didn't arrive in time. Code sampleconst allMembers = await guild.members.fetch();
Ive also tried this snippet I found on a similar post but same issue
console.time("fetch");
await guild.members.fetch();
console.timeEnd("fetch"); // fetch: 676.158ms Versions[email protected] Issue priorityLow (slightly annoying) Which partials do you have configured?GuildMember Which gateway intents are you subscribing to?GuildMembers I have tested this issue on a development releaseNo response |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Fixed my issue, Turns out I am an idiot and forgot something key with intents. |
Beta Was this translation helpful? Give feedback.
Fixed my issue, Turns out I am an idiot and forgot something key with intents.