Show mute/unmute status in group voice

master
Roxie Linden 2024-04-08 21:29:12 -07:00
parent 4be63d8c1f
commit 39cb0bca32
1 changed files with 5 additions and 0 deletions

View File

@ -2823,6 +2823,11 @@ void LLVoiceWebRTCConnection::OnDataReceivedImpl(const std::string &data, bool b
{
participant->mIsSpeaking = voice_data[participant_id].get("v", Json::Value(false)).asBool();
}
if (voice_data[participant_id].isMember("m"))
{
participant->mIsModeratorMuted = voice_data[participant_id].get("m", Json::Value(false)).asBool();
}
}
}
}