mirror of
https://github.com/overte-org/overte.git
synced 2025-04-15 09:49:41 +02:00
Also clear personalmutedlist upon reset()
This commit is contained in:
parent
3d8da683db
commit
e80ae92327
1 changed files with 4 additions and 0 deletions
|
@ -242,6 +242,10 @@ void NodeList::reset() {
|
|||
_ignoredSetLock.lockForWrite();
|
||||
_ignoredNodeIDs.clear();
|
||||
_ignoredSetLock.unlock();
|
||||
// lock and clear our set of personally muted IDs
|
||||
_personalMutedSetLock.lockForWrite();
|
||||
_personalMutedNodeIDs.clear();
|
||||
_personalMutedSetLock.unlock();
|
||||
|
||||
// refresh the owner UUID to the NULL UUID
|
||||
setSessionUUID(QUuid());
|
||||
|
|
Loading…
Reference in a new issue