From c1ad165ef9365dcce043195c426794c2904419ec Mon Sep 17 00:00:00 2001 From: DominikIwanek <141320833+DominikIwanek@users.noreply.github.com> Date: Thu, 30 Nov 2023 12:20:16 +0100 Subject: [PATCH] [AAE-18541] - OAuth - redirect does not work (#9135) --- lib/core/src/lib/auth/oidc/redirect-auth.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/core/src/lib/auth/oidc/redirect-auth.service.ts b/lib/core/src/lib/auth/oidc/redirect-auth.service.ts index 96cdc5a5e18..5f7a3cc223a 100644 --- a/lib/core/src/lib/auth/oidc/redirect-auth.service.ts +++ b/lib/core/src/lib/auth/oidc/redirect-auth.service.ts @@ -129,7 +129,7 @@ export class RedirectAuthService extends AuthService { async loginCallback(): Promise { return this.ensureDiscoveryDocument() - .then(() => this.oauthService.tryLogin({ preventClearHashAfterLogin: false })) + .then(() => this.oauthService.tryLogin({ preventClearHashAfterLogin: true })) .then(() => this._getRedirectUrl()); }