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
I have fixed this issue; You should change the code like this: org code: WebSocket::parsePayloadData() { .... QByteArray chunk(priv->fragment); priv->fragment.clear(); emit newMessage(chunk); .... } changed code: WebSocket::parsePayloadData() { .... priv->fragment += priv->payload; emit newMessage(priv->fragment); priv->fragment.clear(); .... } My email is:[email protected]
The text was updated successfully, but these errors were encountered:
Can you provide a scenario/description on how to reproduce the error?
Sorry, something went wrong.
Send several hundred KB data of size.I fond that received size of data smaller than sended size of data.
No branches or pull requests
I have fixed this issue;
You should change the code like this:
org code:
WebSocket::parsePayloadData()
{
....
QByteArray chunk(priv->fragment);
priv->fragment.clear();
emit newMessage(chunk);
....
}
changed code:
WebSocket::parsePayloadData()
{
....
priv->fragment += priv->payload;
emit newMessage(priv->fragment);
priv->fragment.clear();
....
}
My email is:[email protected]
The text was updated successfully, but these errors were encountered: