Skip to content
Snippets Groups Projects
Unverified Commit e8070b08 authored by Sébastien Blin's avatar Sébastien Blin
Browse files

audio_rtp_session: fix setMuted

Regression was caused by 37125acf where the mute button didn't
work anymore.

Change-Id: I7e3d0953e65848818c9dc0e348759dce63274337
parent ba05f4fb
No related branches found
No related tags found
No related merge requests found
......@@ -213,6 +213,8 @@ AudioRtpSession::setMuted(bool isMuted)
{
std::lock_guard<std::recursive_mutex> lock(mutex_);
muteState_ = isMuted;
if (audioInput_)
audioInput_->setMuted(isMuted);
}
bool
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment