chore: release v2.8.5

This commit is contained in:
March 7th
2022-10-21 18:53:09 +07:00
parent ed4375fd9d
commit e348c8e308
5 changed files with 18 additions and 4 deletions

View File

@@ -9,7 +9,7 @@ module.exports = (client, packet) => {
*/
const channel = client.channels.cache.get(packet.d.channel_id);
if (!channel) return;
channel._recipients = channel._recipients.push(packet.d.user);
channel._recipients.push(packet.d.user);
const user = client.users._add(packet.d.user);
client.emit(Events.CHANNEL_RECIPIENT_ADD, channel, user);
};