mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 15:09:24 +02:00
repair parsing of a node connect request
This commit is contained in:
parent
bd18206573
commit
a8e96441ab
1 changed files with 2 additions and 1 deletions
|
@ -360,7 +360,8 @@ int DomainServer::parseNodeDataFromByteArray(NodeType_t& nodeType, HifiSockAddr&
|
||||||
packetStream >> hasRegistrationToken;
|
packetStream >> hasRegistrationToken;
|
||||||
|
|
||||||
if (hasRegistrationToken) {
|
if (hasRegistrationToken) {
|
||||||
packetStream.skipRawData(NUM_BYTES_DATA_SERVER_REGISTRATION_TOKEN);
|
QByteArray registrationToken;
|
||||||
|
packetStream >> registrationToken;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue