mirror of
https://github.com/danbulant/discord.js
synced 2026-06-08 17:21:31 +00:00
Fix (#1306) MessageRection#fetchUsers() return a collection istead of an array
This commit is contained in:
parent
c86ebefecb
commit
55141b408b
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue