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
Hookbox does not use a valid websocket url when on a secure connection. The issue is on line 16 of hookbox.js.
The protocol for secure websockets is wss://, so that code could be changed to be:
url.replace('http://', 'ws://').replace('https://', 'wss://')
or url.replace(/http(s)?:///, 'ws$1://')
The text was updated successfully, but these errors were encountered:
Confirming this, with Chrome, and that the workaround above seems ok.
Sorry, something went wrong.
No branches or pull requests
Hookbox does not use a valid websocket url when on a secure connection. The issue is on line 16 of hookbox.js.
The protocol for secure websockets is wss://, so that code could be changed to be:
or
url.replace(/http(s)?:///, 'ws$1://')
The text was updated successfully, but these errors were encountered: