diff options
author | Roxie Linden <roxie@lindenlab.com> | 2024-02-09 13:13:44 -0800 |
---|---|---|
committer | Roxie Linden <roxie@lindenlab.com> | 2024-02-09 13:13:44 -0800 |
commit | 70068a244b55c00a51cc48f09634a2fe4cedd54b (patch) | |
tree | dc3ca87b4f222414b53f879feaf932bbc76f79d1 /indra/newview/llvoicewebrtc.cpp | |
parent | c0f9baf41e93a3ab8fbd5835e579127ad6cc55a0 (diff) |
Fix ad-hoc voice
Diffstat (limited to 'indra/newview/llvoicewebrtc.cpp')
-rw-r--r-- | indra/newview/llvoicewebrtc.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/newview/llvoicewebrtc.cpp b/indra/newview/llvoicewebrtc.cpp index df3ca08955..d3b9f8ba2c 100644 --- a/indra/newview/llvoicewebrtc.cpp +++ b/indra/newview/llvoicewebrtc.cpp @@ -531,7 +531,9 @@ bool LLWebRTCVoiceClient::estateSessionState::processConnectionStates() // add new connections for new neighbors for (auto &neighbor : neighbor_ids) { - connectionPtr_t connection = mWebRTCConnections.emplace_back(new LLVoiceWebRTCSpatialConnection(neighbor, INVALID_PARCEL_ID, mChannelID)); + connectionPtr_t connection(new LLVoiceWebRTCSpatialConnection(neighbor, INVALID_PARCEL_ID, mChannelID)); + + mWebRTCConnections.push_back(connection); connection->setMicGain(mMicGain); connection->setMuteMic(mMuted); connection->setSpeakerVolume(mSpeakerVolume); |