I'm trying to get the reactions of the replied message in discord.js but even if there is reactions on the replied message, there is nothing in the msg.reactions.cache.
Here the code:
msg.fetchReference().then(target_msg => {
console.log(target_msg.reactions.cache);
});
The output: Collection(0) [Map] {}