diff options
| author | Roxanne Skelly <roxie@lindenlab.com> | 2024-09-12 09:46:20 -0700 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-12 09:46:20 -0700 | 
| commit | 1894136e9a6e25b27acfffdc2a92afc08fce012a (patch) | |
| tree | 8144fb56ac7b6f486987f798a69d4f8b2690b96c | |
| parent | b713f56d07cffb21cad5928bf30d6d4b6dc79de9 (diff) | |
| parent | 44e1be64e0a212fb77cc6ef4664d444242d62e67 (diff) | |
Merge pull request #2543 from secondlife/roxie/webrtc-285
mute icons were not showing during group call when user was muted
| -rw-r--r-- | indra/newview/llvoicewebrtc.cpp | 3 | 
1 files changed, 1 insertions, 2 deletions
| diff --git a/indra/newview/llvoicewebrtc.cpp b/indra/newview/llvoicewebrtc.cpp index 4084e5ab76..3d684e5a1b 100644 --- a/indra/newview/llvoicewebrtc.cpp +++ b/indra/newview/llvoicewebrtc.cpp @@ -2996,10 +2996,9 @@ void LLVoiceWebRTCConnection::OnDataReceivedImpl(const std::string &data, bool b                          participant->mIsSpeaking = participant_obj["v"].as_bool();                      } -                    if (participant_obj.contains("v") && participant_obj["m"].is_bool()) +                    if (participant_obj.contains("m") && participant_obj["m"].is_bool())                      {                          participant->mIsModeratorMuted = participant_obj["m"].as_bool(); -                        ;                      }                  }              } | 
