Skip to content

Commit 19f8854

Browse files
committed
refactor(api): update init cached groups function
1 parent c7a64f5 commit 19f8854

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/api/src/app/groups/groups.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -694,7 +694,7 @@ export class GroupsService {
694694
const cachedGroup = new CachedGroup(
695695
group.id,
696696
group.treeDepth,
697-
group.members.map((m) => m.id)
697+
group.members.map((m) => BigInt(m.id))
698698
)
699699

700700
this.cachedGroups.set(group.id, cachedGroup)

0 commit comments

Comments
 (0)