feat: show 10 members

This commit is contained in:
Barış Soner Uşaklı
2021-11-30 18:42:52 -05:00
parent 7b99dc46eb
commit d9c42c000c

View File

@@ -98,7 +98,7 @@ Groups.getGroups = async function (set, start, stop) {
Groups.getGroupsAndMembers = async function (groupNames) { Groups.getGroupsAndMembers = async function (groupNames) {
const [groups, members] = await Promise.all([ const [groups, members] = await Promise.all([
Groups.getGroupsData(groupNames), Groups.getGroupsData(groupNames),
Groups.getMemberUsers(groupNames, 0, 3), Groups.getMemberUsers(groupNames, 0, 9),
]); ]);
groups.forEach((group, index) => { groups.forEach((group, index) => {
if (group) { if (group) {