Merge branch 'master' into develop

This commit is contained in:
Barış Soner Uşaklı
2025-01-08 09:45:52 -05:00
22 changed files with 500 additions and 86 deletions

View File

@@ -402,10 +402,10 @@ async function getTooltipData(uids) {
uids = uids.slice(0, cutoff - 1);
}
const usernames = await user.getUsernamesByUids(uids);
const users = await user.getUsersFields(uids, ['username']);
return {
otherCount,
usernames,
usernames: users.map(user => user.displayname),
cutoff,
};
}