We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Login on WebKit based browsers does not work due to aborted request in SessionValidator.js.
SessionValidator.js
What happens is that:
goto
window.location.href
EVENT_AUTHENTICATION_DATA_CHANGED
EVENT_AUTHENTICATED
In non-WebKit browsers:
In WebKit browsers:
getSessionInfo
This issue started appearing probably after upgrading to newer jQuery with updated promise handling.
The text was updated successfully, but these errors were encountered:
Fix session validation error in WebKit browsers (WrenSecurity#176)
c1dadb9
bc37909
6b9f806
12d99a9
d15f97d
No branches or pull requests
Login on WebKit based browsers does not work due to aborted request in
SessionValidator.js
.What happens is that:
goto
parameter, CommonConfig.js sets redirect URL viawindow.location.href
EVENT_AUTHENTICATION_DATA_CHANGED
event is fired which in turn firesEVENT_AUTHENTICATED
In non-WebKit browsers:
window.location.href
)In WebKit browsers:
getSessionInfo
, however that request gets cancelled (probably due to the navigation in progress)This issue started appearing probably after upgrading to newer jQuery with updated promise handling.
The text was updated successfully, but these errors were encountered: