Skip to content

Commit

Permalink
fix: anonymization not working
Browse files Browse the repository at this point in the history
  • Loading branch information
FreekBes committed Jul 16, 2024
1 parent 5e8d4cc commit 216f541
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/intra/cleanup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ const anonymizeUsers = async function(api: Fast42): Promise<void> {
continue;
}
console.log(`Anonymizing user ${user.login}...`);
await syncUser(anonymizedData);
await syncUser(anonymizedData[0]);
}
catch (err) {
console.error(`Error anonymizing user ${user.login}, deleting them (user ID ${user.id}): ${err}`);
Expand Down

0 comments on commit 216f541

Please sign in to comment.