From 7b6ac46b6ae4f57a3416ddb99eb28ea7f5979b3d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Burak=20Kaan=20K=C3=B6se?= Date: Sat, 26 Apr 2025 12:25:34 +0200 Subject: [PATCH] More informational message for different UPN and address for Outlook authenticator. --- Wino.Authentication/OutlookAuthenticator.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Wino.Authentication/OutlookAuthenticator.cs b/Wino.Authentication/OutlookAuthenticator.cs index 106f9717..d6afe732 100644 --- a/Wino.Authentication/OutlookAuthenticator.cs +++ b/Wino.Authentication/OutlookAuthenticator.cs @@ -107,7 +107,7 @@ public class OutlookAuthenticator : BaseAuthenticator, IOutlookAuthenticator if (account?.Address != null && !account.Address.Equals(authResult.Account.Username, StringComparison.OrdinalIgnoreCase)) { - throw new AuthenticationException("Authenticated address does not match with your account address."); + throw new AuthenticationException("Authenticated address does not match with your account address. If you are signing with a Office365, it is not officially supported yet."); } return new TokenInformationEx(authResult.AccessToken, authResult.Account.Username);