mirror of
https://github.com/plankanban/planka.git
synced 2025-07-18 20:59:44 +02:00
fix: Fallback to query if there is no fragment
This commit is contained in:
parent
7c599d5c6f
commit
ff2223c490
1 changed files with 2 additions and 1 deletions
|
@ -38,7 +38,8 @@ export function* authenticateUsingOidc() {
|
|||
}
|
||||
|
||||
export function* authenticateUsingOidcCallback() {
|
||||
const params = new URLSearchParams(window.location.hash.substring(1));
|
||||
// https://github.com/plankanban/planka/issues/511#issuecomment-1771385639
|
||||
const params = new URLSearchParams(window.location.hash.substring(1) || window.location.search);
|
||||
|
||||
yield put(replace(Paths.LOGIN));
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue