Skip to content

Commit

Permalink
Hide "No state in response" OIDC error
Browse files Browse the repository at this point in the history
  • Loading branch information
m-mohr committed Dec 2, 2020
1 parent 19888ef commit b572ca0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/ConnectForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,9 @@ export default {
try {
await OidcProvider.signinCallback();
} catch (error) {
Utils.exception(this, error);
if (error instanceof Error && error.message !== "No state in response") {
Utils.exception(this, error);
}
}
},
mounted() {
Expand Down

0 comments on commit b572ca0

Please sign in to comment.