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
https://github.com/reveal/multiplex/blob/master/client.js#L8
// ignore data from sockets that aren't ours if (data.socketId !== socketId) { return; }
Please, never do that : you're broadcasting messages for everybody, and ask clients for not listening what the others are shouting.
See https://socket.io/docs/v3/server-api/#server-of-nsp
The text was updated successfully, but these errors were encountered:
No branches or pull requests
https://github.com/reveal/multiplex/blob/master/client.js#L8
Please, never do that : you're broadcasting messages for everybody, and ask clients for not listening what the others are shouting.
See https://socket.io/docs/v3/server-api/#server-of-nsp
The text was updated successfully, but these errors were encountered: