From 94aaec17b707d860db357e5a8f71d93f4afdb0a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc-Andr=C3=A9=20Barbeau?= Date: Thu, 1 Oct 2020 12:13:13 -0400 Subject: [PATCH] fix(auth): auth microsoft use location href --- packages/auth/src/lib/shared/auth-microsoft.provider.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/auth/src/lib/shared/auth-microsoft.provider.ts b/packages/auth/src/lib/shared/auth-microsoft.provider.ts index bc7c864764..b2b65d2b21 100644 --- a/packages/auth/src/lib/shared/auth-microsoft.provider.ts +++ b/packages/auth/src/lib/shared/auth-microsoft.provider.ts @@ -15,7 +15,7 @@ export function MSALConfigFactory(config: ConfigService): Configuration { auth: { clientId: msConf.clientId, authority: 'https://login.microsoftonline.com/organizations', // 'common' - redirectUri: window.location.origin + redirectUri: window.location.href }, cache: { cacheLocation: 'sessionStorage'