1
0
mirror of https://github.com/bitwarden/directory-connector synced 2026-01-04 09:33:26 +00:00

Fix group only sync errors for AD (#224)

This commit is contained in:
Robyn MacCallum
2022-02-07 10:32:37 -05:00
committed by GitHub
parent 7c85c9fddd
commit a4b85f1e30

View File

@@ -137,6 +137,10 @@ export class SyncService {
}
private removeDuplicateUsers(users: UserEntry[]) {
if (users == null) {
return null;
}
const uniqueUsers = new Array<UserEntry>();
const processedActiveUsers = new Map<string, string>();
const processedDeletedUsers = new Map<string, string>();