mirror of
https://git.jami.net/savoirfairelinux/jami-daemon.git
synced 2025-08-12 22:09:25 +08:00
audio_rtp_session: fix setMuted
Regression was caused by 37125acf5
where the mute button didn't
work anymore.
Change-Id: I7e3d0953e65848818c9dc0e348759dce63274337
This commit is contained in:
@ -213,6 +213,8 @@ AudioRtpSession::setMuted(bool isMuted)
|
||||
{
|
||||
std::lock_guard<std::recursive_mutex> lock(mutex_);
|
||||
muteState_ = isMuted;
|
||||
if (audioInput_)
|
||||
audioInput_->setMuted(isMuted);
|
||||
}
|
||||
|
||||
bool
|
||||
|
Reference in New Issue
Block a user