Merge pull request #1633 from birarda/master

fix for NodeList UUID not updating
This commit is contained in:
AndrewMeadows 2014-01-22 16:59:02 -08:00
commit 3a9dc667db

View file

@ -220,7 +220,7 @@ void Profile::processDataServerResponse(const QString& userString, const QString
} else if (keyList[i] == DataServerKey::UUID) {
// this is the user's UUID - set it on the profile
_uuid = QUuid(valueList[i]);
setUUID(QUuid(valueList[i]));
}
}
}