Super Reactions users collection appears empty

Hello, I noticed that while looping through a message's reactions, the users for all Super Reactions is just empty, the countDetails show that there is 1 burst reaction, and the total count of the reactions is 1 too, but the users who reacted don't appear in users Here is the code I used:
module.exports = {
cooldown: 10,
data: new ContextMenuCommandBuilder()
.setName('Update Reactions')
.setType(ApplicationCommandType.Message)
.setContexts(InteractionContextType.Guild)
.setDefaultMemberPermissions(PermissionFlagsBits.Administrator),

async execute(interaction) {
await interaction.deferReply({ flags: MessageFlags.Ephemeral });

for (const reaction of interaction.targetMessage.reactions.cache.values()) {
const reactionString = formatReaction(reaction.emoji); //Function to generate a name:id string for reactions
console.log(reactionString);

const reactionUsers = await reaction.users.fetch();
console.log(reactionUsers.size);

const reactionUserIds = reactionUsers.map(user => user.id);
console.log(reactionUserIds);
}
}
};
module.exports = {
cooldown: 10,
data: new ContextMenuCommandBuilder()
.setName('Update Reactions')
.setType(ApplicationCommandType.Message)
.setContexts(InteractionContextType.Guild)
.setDefaultMemberPermissions(PermissionFlagsBits.Administrator),

async execute(interaction) {
await interaction.deferReply({ flags: MessageFlags.Ephemeral });

for (const reaction of interaction.targetMessage.reactions.cache.values()) {
const reactionString = formatReaction(reaction.emoji); //Function to generate a name:id string for reactions
console.log(reactionString);

const reactionUsers = await reaction.users.fetch();
console.log(reactionUsers.size);

const reactionUserIds = reactionUsers.map(user => user.id);
console.log(reactionUserIds);
}
}
};
Here is the output:
:esmile:
2
[ '510655770866483221', '533692379777990656' ]
:Heart:
2
[ '510655770866483221', '533692379777990656' ]
:esunglasses:
3
[ '510655770866483221', '533692379777990656', '1113876215896473612' ]
šŸ˜€
2
[ '510655770866483221', '533692379777990656' ]
:peeposmoke:
0
[]
:esmile:
2
[ '510655770866483221', '533692379777990656' ]
:Heart:
2
[ '510655770866483221', '533692379777990656' ]
:esunglasses:
3
[ '510655770866483221', '533692379777990656', '1113876215896473612' ]
šŸ˜€
2
[ '510655770866483221', '533692379777990656' ]
:peeposmoke:
0
[]
And the message in question is attached below, as you can see the peeposmoke is a super reaction by me, I've tested this on other messages with other reactions and the same appears to be the case
No description
4 Replies
d.js toolkit
d.js toolkit•3mo ago
d.js docs
d.js docs•3mo ago
:propertysignature: FetchReactionUsersOptions#type discord.js@14.22.1 The reaction type to fetch Default value: ReactionType.Normal
TapRo
TapRoOP•3mo ago
Gotcha thank you so much!
d.js toolkit
d.js toolkit•3mo ago
The issue has been marked as solved by support staff

Did you find this page helpful?