Handle URL fragments when redirect from logout / KEYCLOAK-2323

This commit is contained in:
Alexander Schwartz 2016-01-14 23:06:16 +01:00
parent e913c8da16
commit b7ac2548f1

View file

@ -681,6 +681,11 @@
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;
}
}