diff options
| -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(); -                        ;                      }                  }              } | 
