Does discord.js v13 not let you fetch more than 100 reactions per message?

Does discord.js v13 not let you fetch more than 100 reactions per message?
6 Replies
d.js docs
d.js docs2y ago
• What's your exact discord.js npm list discord.js and node node -v version? • Post the full error stack trace, not just the top part! • Show your code! • Explain what exactly your issue is. • Not a discord.js issue? Check out #useful-servers.
zackie
zackie2y ago
reaction.message.reactions.cache.map(async(reaction) => {
let usersThatReacted = []
let total = []
let reactedUsers = await reaction.users.fetch();

reactedUsers.map((user) => {
//usersThatReacted.push(user.id);
if (friendlyguild.members.cache.get(user.id)) {
usersThatReacted.push(user.id)
}
total.push(user.id)

});
console.log(`stayed: ${usersThatReacted.length}`)
console.log(`total: ${total.length}`)

})
reaction.message.reactions.cache.map(async(reaction) => {
let usersThatReacted = []
let total = []
let reactedUsers = await reaction.users.fetch();

reactedUsers.map((user) => {
//usersThatReacted.push(user.id);
if (friendlyguild.members.cache.get(user.id)) {
usersThatReacted.push(user.id)
}
total.push(user.id)

});
console.log(`stayed: ${usersThatReacted.length}`)
console.log(`total: ${total.length}`)

})
Trying to see how many members continued to stay in my server since verify reacting but it only shows 100 userids despite the message having 300 reacts total = 100 everything I try
Unknown User
Unknown User2y ago
Message Not Public
Sign In & Join Server To View
zackie
zackie2y ago
I specifically want to test if my new verification system is doing good to keep members
monbrey
monbrey2y ago
This is just how discord works
d.js docs
d.js docs2y ago
Documentation suggestion for @zackie:method ReactionUserManager#fetch() Fetches all the users that gave this reaction. Resolves with a collection of users, mapped by their ids.