Remove a users reaction from fetchMessage? - Discord JS
问题 I have a question with Discord JS How do I remove a specific users reaction from a fetched message? I tried this message.channel.fetchMessage(messageID).then(m => { m.reactions.remove(UserID) }) But it doesn't remove the actual reaction. Help would be appreciated thanks. 回答1: message.reactions is a collection of messageReactions . I think you need to loop through the collection and then remove the messageReaction required. message.channel.fetchMessage(messageID).map(r => r).then(message => {