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);
}
}
};
Here is the output:

2
[ '510655770866483221', '533692379777990656' ]

2
[ '510655770866483221', '533692379777990656' ]

3
[ '510655770866483221', '533692379777990656', '1113876215896473612' ]
😀
2
[ '510655770866483221', '533692379777990656' ]

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