We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 061ebc3 commit 22bbd51Copy full SHA for 22bbd51
src/sync.ts
@@ -76,10 +76,10 @@ const syncContacts = async (
76
let skippedNoName = 0;
77
78
for (const user of entraUsers) {
79
- if (!user.givenName && !user.familyName && !user.displayName) {
+ if (!user.familyName || !user.displayName) {
80
logger.info(
81
{ email: user.email, upn: user.upn },
82
- "Skipping user with no name information",
+ "Skipping user with no first and/or last name information",
83
);
84
skippedNoName++;
85
continue;
0 commit comments