permissions for the local node were being updated without the various *changed* signals being called. this was keeping the asset-server menu item from being correct, among other things

This commit is contained in:
Seth Alves 2016-06-11 15:16:45 -07:00
parent e79767a121
commit 924c949af5

View file

@ -543,7 +543,9 @@ void NodeList::processDomainServerList(QSharedPointer<ReceivedMessage> message)
setSessionUUID(newUUID);
// pull the permissions/right/privileges for this node out of the stream
packetStream >> _permissions;
NodePermissions newPermissions;
packetStream >> newPermissions;
setPermissions(newPermissions);
// pull each node in the packet
while (packetStream.device()->pos() < message->getSize()) {