[AAE-18541] - OAuth - redirect does not work (#9135)

This commit is contained in:
DominikIwanek
2023-11-30 12:20:16 +01:00
committed by GitHub
parent 065829ef01
commit c1ad165ef9

View File

@@ -129,7 +129,7 @@ export class RedirectAuthService extends AuthService {
async loginCallback(): Promise<string | undefined> {
return this.ensureDiscoveryDocument()
.then(() => this.oauthService.tryLogin({ preventClearHashAfterLogin: false }))
.then(() => this.oauthService.tryLogin({ preventClearHashAfterLogin: true }))
.then(() => this._getRedirectUrl());
}