Handle URL fragments when redirect from logout / KEYCLOAK-2323
This commit is contained in:
parent
e913c8da16
commit
b7ac2548f1
1 changed files with 5 additions and 0 deletions
|
@ -681,6 +681,11 @@
|
||||||
oauth.newUrl += '#' + oauth.fragment;
|
oauth.newUrl += '#' + oauth.fragment;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return oauth;
|
||||||
|
} else if (oauth.fragment) {
|
||||||
|
// logout has been performed, fragment needs to be updated in URL
|
||||||
|
oauth.newUrl += '#' + oauth.fragment;
|
||||||
|
|
||||||
return oauth;
|
return oauth;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue