mirror of
https://github.com/overte-org/overte.git
synced 2025-08-04 11:35:20 +02:00
fix unix build
This commit is contained in:
parent
4bbfcb6092
commit
caa8b0b5b6
1 changed files with 2 additions and 1 deletions
|
@ -55,7 +55,8 @@ void MessagesClient::decodeMessagesPacket(QSharedPointer<NLPacketList> packetLis
|
|||
if (bytesSenderID.length() == NUM_BYTES_RFC4122_UUID) {
|
||||
senderID = QUuid::fromRfc4122(bytesSenderID);
|
||||
} else {
|
||||
senderID = QUuid::QUuid(); // packet was missing UUID use default instead
|
||||
QUuid emptyUUID;
|
||||
senderID = emptyUUID; // packet was missing UUID use default instead
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue