rename cacheService.getUsers to findUsers to match naming scheme

This commit is contained in:
Hazelnoot 2025-10-06 11:50:59 -04:00
parent 18b909a10c
commit 0757ca921f

View file

@ -116,7 +116,7 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
return [];
}
const users = await this.cacheService.getUsers(ps.userIds);
const users = await this.cacheService.findUsersById(ps.userIds);
// リクエストされた通りに並べ替え
// 順番は保持されるけど数は減ってる可能性がある