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
with this setting:
catChat.settings = { user: 'user_123', }
the websocket connection it is always open with the user id 'user'.
instead passing the user directly into the path works:
catChat.settings = { user: 'user_123', ws: { onFailed: (error) => { console.log(error.description) }, 'path': 'ws/user_123' }, }
The text was updated successfully, but these errors were encountered:
Can confirm, i'm using the cdn version so it would be helpful if a fix can be deployed there too.
Sorry, something went wrong.
No branches or pull requests
with this setting:
the websocket connection it is always open with the user id 'user'.
instead passing the user directly into the path works:
The text was updated successfully, but these errors were encountered: