mirror of
https://github.com/overte-org/overte.git
synced 2025-04-21 04:03:59 +02:00
Update packet reading to use fromRawData for reading uuid
This commit is contained in:
parent
ef7a91af8f
commit
71866d52ed
1 changed files with 1 additions and 1 deletions
|
@ -203,7 +203,7 @@ void AssignmentClientMonitor::checkSpares() {
|
|||
}
|
||||
|
||||
void AssignmentClientMonitor::handleChildStatusPacket(QSharedPointer<NLPacket> packet) {
|
||||
QUuid senderID = QUuid::fromRfc4122(packet->read(NUM_BYTES_RFC4122_UUID));
|
||||
QUuid senderID = QUuid::fromRfc4122(QByteArray::fromRawData(packet->getData(), NUM_BYTES_RFC4122_UUID));
|
||||
|
||||
auto nodeList = DependencyManager::get<NodeList>();
|
||||
|
||||
|
|
Loading…
Reference in a new issue