diff --git a/libraries/networking/src/NodeList.cpp b/libraries/networking/src/NodeList.cpp index 4c3ff29270..4606c44cd1 100644 --- a/libraries/networking/src/NodeList.cpp +++ b/libraries/networking/src/NodeList.cpp @@ -373,6 +373,7 @@ void NodeList::sendDomainServerCheckIn() { packetStream << hardwareAddress; + // now add the machine fingerprint - a null UUID if logged in, real one if not logged in auto accountManager = DependencyManager::get(); packetStream << (accountManager->isLoggedIn() ? QUuid() : FingerprintUtils::getMachineFingerprint()); }