You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 18, 2021. It is now read-only.
The problem is probably related to the PREFIX_PATH setting. If it is set to /, then at several locations, where a URL is expected, '//xyz' is injected instead of /xyz. URLs that start with // are assumed to be absolute, and hence the problem exists. Solve it by changing settings.json from
{
# ...
"PATH_PREFIX": "/"
}
to
{
# ...
"PATH_PREFIX": ""
}
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Error from Chome:
Uncaught SecurityError: Failed to execute 'pushState' on 'History': A history state object with URL 'http://jobs/' cannot be created in a document with origin 'http://salt.demo.com' and URL 'http://salt.demo.com/job_result/20160527165149335201'.
Firefox: SecurityError: The operation is insecure.
If I enter manually on url http://salt.demo.com/jobs (or any others) the everything works.
There is missing domain on http://jobs/ ? How to fix this?
The text was updated successfully, but these errors were encountered: