diff options
author | Roxie Linden <roxie@lindenlab.com> | 2024-03-05 11:05:31 -0800 |
---|---|---|
committer | Roxie Linden <roxie@lindenlab.com> | 2024-03-05 11:05:31 -0800 |
commit | 6d5304bd921d765dfa7e1ab6d5d0e0b64dea11f1 (patch) | |
tree | 1294a623f992d561cd817ec549c19a79198879c1 /indra/newview/llvoiceclient.cpp | |
parent | f4c1e2e795f17ff57b75b774c02b5c9bb1c53901 (diff) |
For webrtc, 'calling' dialog should remain up, disappearing when peer connects (p2p)
Diffstat (limited to 'indra/newview/llvoiceclient.cpp')
-rw-r--r-- | indra/newview/llvoiceclient.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/newview/llvoiceclient.cpp b/indra/newview/llvoiceclient.cpp index 087c93a3f5..b642c43f34 100644 --- a/indra/newview/llvoiceclient.cpp +++ b/indra/newview/llvoiceclient.cpp @@ -427,6 +427,7 @@ bool LLVoiceClient::inProximalChannel() void LLVoiceClient::setNonSpatialChannel( const LLSD& channelInfo, + bool notify_on_first_join, bool hangup_on_last_leave) { setNonSpatialVoiceModule(channelInfo["voice_server_type"].asString()); @@ -436,7 +437,7 @@ void LLVoiceClient::setNonSpatialChannel( } if (mNonSpatialVoiceModule) { - mNonSpatialVoiceModule->setNonSpatialChannel(channelInfo, hangup_on_last_leave); + mNonSpatialVoiceModule->setNonSpatialChannel(channelInfo, notify_on_first_join, hangup_on_last_leave); mNonSpatialVoiceModule->processChannels(true); } } |