mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-17 03:53:29 +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.users.set(user.id, user);
|
||||||
}
|
}
|
||||||
this.count = this.users.size;
|
this.count = this.users.size;
|
||||||
return users;
|
return this.users;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user