Hi everyone,

Has any of you experienced the following behavior:
we have an AngularJS app with some of its resources protected by Keycloak - setup:
var auth = {};
angular.element(document).ready(function () {
    var env = 'keycloak';
    var keycloakAuth = new Keycloak(env + '.json');
    keycloakAuth.init({onLoad: 'check-sso'})
        .success(function () {
        auth.authz = keycloakAuth;
        module.factory('Auth', function() {
            return auth;
        });
        angular.bootstrap(document, ["client_id"]);
    }).error(function () {

    });
});

Everything works as expected, except that in the registration process if the user does NOT accept the "Terms and Conditions" the page where it came from, present in the redirect_fragment is not rendered - but it is being rendered when I refresh the page as expected...

Thanks,
Adrian