mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 16:13:31 +01: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