Skip to content

Commit

Permalink
Add URL fragment to the URL which contains redirect information; this f…
Browse files Browse the repository at this point in the history
  • Loading branch information
justvanrossum committed Nov 7, 2023
1 parent 337234c commit d622758
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fontra_rcjk/landing.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ function rcjkAuthenticateFunc() {
} else {
const loginForm = document.querySelector("#login-form");
const url = new URL(window.location);
loginForm.action = "/login" + url.search;
loginForm.action = "/login" + url.search + url.hash;
}
loginFailureMessage.classList.toggle("hidden", !loginFailed);
return haveToken;
Expand Down

0 comments on commit d622758

Please sign in to comment.