summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoxie Linden <roxie@lindenlab.com>2024-09-06 12:00:00 -0700
committerRoxie Linden <roxie@lindenlab.com>2024-09-06 12:00:00 -0700
commit3017b1bae163881b0ef9aff3071865431970927b (patch)
tree60eef978702ac6c3b1ea607ddfb9f8f5f442d6e1
parent6af471482d6801530915c1c9ae4bdf788af52eae (diff)
Don't enable vivox spatial when teleporting while in a webrtc conference/p2p/group call
Processing for vivox was being enabled when teleporting into a vivox region regardless as to whether the user was in a conference/p2p/group call, resulting in vivox spatial and webrtc conference/p2p/group simultaneously being active.
-rw-r--r--indra/newview/llvoiceclient.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llvoiceclient.cpp b/indra/newview/llvoiceclient.cpp
index 5af7528ada..1a35a71706 100644
--- a/indra/newview/llvoiceclient.cpp
+++ b/indra/newview/llvoiceclient.cpp
@@ -256,8 +256,8 @@ void LLVoiceClient::setSpatialVoiceModule(const std::string &voice_server_type)
if (inProximalChannel())
{
mSpatialVoiceModule->processChannels(false);
+ module->processChannels(true);
}
- module->processChannels(true);
mSpatialVoiceModule = module;
mSpatialVoiceModule->updateSettings();
}