fix(MessageReaction*Action): correctly cache incoming members and users (#4969)

This commit is contained in:
SpaceEEC
2020-11-20 16:19:18 +01:00
committed by GitHub
parent 7faa73a561
commit 8b91ac5d7e
3 changed files with 9 additions and 4 deletions

View File

@@ -8,7 +8,10 @@ const { PartialTypes } = require('../../util/Constants');
{ user_id: 'id',
message_id: 'id',
emoji: { name: '<27>', id: null },
channel_id: 'id' } }
channel_id: 'id',
// If originating from a guild
guild_id: 'id',
member: { ..., user: { ... } } }
*/
class MessageReactionAdd extends Action {