fix: Email cannot be found for some Azure sign-in accounts

This commit is contained in:
Tom Moor
2022-06-09 09:22:12 +02:00
parent aed8d7a649
commit d99d84d97d

View File

@@ -74,7 +74,13 @@ if (env.AZURE_CLIENT_ID && env.AZURE_CLIENT_SECRET) {
}
const organization = organizationResponse.value[0];
const email = profile.email || profileResponse.mail;
// Note: userPrincipalName is last here for backwards compatibility with
// previous versions of Outline that did not include it.
const email =
profile.email ||
profileResponse.mail ||
profileResponse.userPrincipalName;
if (!email) {
throw MicrosoftGraphError(