mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-09 17:53:43 +02:00
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:
parent
e79767a121
commit
924c949af5
1 changed files with 3 additions and 1 deletions
|
@ -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()) {
|
||||
|
|
Loading…
Reference in a new issue