mirror of
https://github.com/discordjs/discord.js.git
synced 2026-06-02 17:10:08 +00:00
Fix (#1306) MessageRection#fetchUsers() return a collection istead of an array
This commit is contained in:
@@ -84,7 +84,7 @@ class MessageReaction {
|
||||
this.users.set(user.id, user);
|
||||
}
|
||||
this.count = this.users.size;
|
||||
return users;
|
||||
return this.users;
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user