Fix (#1306) MessageRection#fetchUsers() return a collection istead of an array

This commit is contained in:
SpaceEEC
2017-03-30 12:02:00 +02:00
committed by Crawl
parent c86ebefecb
commit 55141b408b

View File

@@ -84,7 +84,7 @@ class MessageReaction {
this.users.set(user.id, user);
}
this.count = this.users.size;
return users;
return this.users;
});
}
}