mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-04 18:54:02 +02:00
Merge pull request #9304 from zfox23/ClearPersonalMute
Also clear personalMutedList upon reset()
This commit is contained in:
commit
9a44cf1720
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