diff options
author | Roxie Linden <roxie@lindenlab.com> | 2024-04-04 11:32:51 -0700 |
---|---|---|
committer | Roxie Linden <roxie@lindenlab.com> | 2024-04-04 11:32:51 -0700 |
commit | 3ff1f0f9518c7b2faf1f9ea5e3f2eb42539ba2e5 (patch) | |
tree | 3e55f6479d9def8bba04010d10b3a0c6f0eceb55 /indra/newview/llvoicewebrtc.cpp | |
parent | c826aea079c59950a4064a94825534884fed8bf8 (diff) |
An explicit "decline" message for P2P
When declining a P2P voice call for webrtc, instead of relying
on vivox to stop "ringing," we need to send an explicit decline
message from the peer through the server infrastructure.
Diffstat (limited to 'indra/newview/llvoicewebrtc.cpp')
-rw-r--r-- | indra/newview/llvoicewebrtc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llvoicewebrtc.cpp b/indra/newview/llvoicewebrtc.cpp index 3cc4aa113c..dbfc28c44f 100644 --- a/indra/newview/llvoicewebrtc.cpp +++ b/indra/newview/llvoicewebrtc.cpp @@ -1360,7 +1360,7 @@ bool LLWebRTCVoiceClient::isCurrentChannel(const LLSD &channelInfo) if (mSession) { - if (!channelInfo["sessionHandle"].asString().empty()) + if (!channelInfo["session_handle"].asString().empty()) { return mSession->mHandle == channelInfo["session_handle"].asString(); } |