fix: member get by ids

This commit is contained in:
Julian Krauser 2025-01-27 15:16:12 +01:00
parent b678067874
commit ebe587756a
4 changed files with 13 additions and 12 deletions

View file

@ -69,7 +69,7 @@ export default abstract class MemberService {
}
if (ids.length != 0) {
query = query.where({ id: ids });
query = query.where("member.id IN (:...ids)", { ids: ids });
}
if (!noLimit) {