Skip to content

Commit

Permalink
Merge branch 'crowd-linux' of github.com:CrowdDotDev/crowd.dev into c…
Browse files Browse the repository at this point in the history
…rowd-linux
  • Loading branch information
Uroš Marolt committed Sep 19, 2024
2 parents 49a7643 + a9acc99 commit d33b5ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion services/apps/data_sink_worker/src/bin/erase-member.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ setImmediate(async () => {
const idParams = pairs.filter((p) => p.type === 'ids')
const idsToDelete: string[] = []
for (const param of idParams) {
idsToDelete.push(param.split(',').map((id) => id.trim()))
idsToDelete.push(...param.value.split(',').map((id) => id.trim()))
}

const orgDataMap: Map<string, any[]> = new Map()
Expand Down

0 comments on commit d33b5ed

Please sign in to comment.