From 5214d538721248c20c8e2e8b24e45cdcfab336a3 Mon Sep 17 00:00:00 2001 From: Stephen Birarda Date: Wed, 22 Jan 2014 16:49:36 -0800 Subject: [PATCH] call UUID setter in Profile UUID update so it updates NodeList --- interface/src/avatar/Profile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interface/src/avatar/Profile.cpp b/interface/src/avatar/Profile.cpp index dfd06daa4a..2ea29b2cca 100644 --- a/interface/src/avatar/Profile.cpp +++ b/interface/src/avatar/Profile.cpp @@ -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])); } } }