From e185301277e920bdf775de000f1f0c30ec54633e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Burak=20Kaan=20K=C3=B6se?= Date: Fri, 14 Nov 2025 13:29:49 +0100 Subject: [PATCH] Fix missing window handler for outlook authenticator. --- Wino.Authentication/OutlookAuthenticator.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Wino.Authentication/OutlookAuthenticator.cs b/Wino.Authentication/OutlookAuthenticator.cs index 285a7c50..9dfd05b2 100644 --- a/Wino.Authentication/OutlookAuthenticator.cs +++ b/Wino.Authentication/OutlookAuthenticator.cs @@ -57,6 +57,7 @@ public class OutlookAuthenticator : BaseAuthenticator, IOutlookAuthenticator { outlookAppBuilder = PublicClientApplicationBuilder.Create(AuthenticatorConfig.OutlookAuthenticatorClientId) .WithBroker(options) + .WithParentActivityOrWindow(_nativeAppService.GetCoreWindowHwnd) .WithDefaultRedirectUri() .WithAuthority(Authority); }