Skip to content

Commit

Permalink
fix(api): fix init cached groups
Browse files Browse the repository at this point in the history
  • Loading branch information
vplasencia committed Dec 6, 2023
1 parent 16c0b89 commit a20e10f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions apps/api/src/app/groups/groups.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -685,6 +685,12 @@ export class GroupsService {

/* istanbul ignore next */
for (const group of groups) {
const members = []

for (const member of group.members) {
members.push(BigInt(member.id))
}

const cachedGroup = new CachedGroup(
group.id,
group.treeDepth,
Expand Down

0 comments on commit a20e10f

Please sign in to comment.