We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91d6ced commit 44fa57aCopy full SHA for 44fa57a
components/server/src/auth/generic-auth-provider.ts
@@ -423,7 +423,7 @@ export class GenericAuthProvider implements AuthProvider {
423
424
let message = "Authorization failed. Please try again.";
425
if (AuthException.is(err)) {
426
- message = `Login was interrupted: ${err.message}`;
+ return this.sendCompletionRedirectWithError(response, { error: err.message });
427
}
428
if (this.isOAuthError(err)) {
429
message = "OAuth Error. Please try again."; // this is a 5xx response from authorization service
0 commit comments