mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-13 20:47:04 +00:00
fix(essentials): Set not in call state to report as unmuted
This commit is contained in:
parent
c557400f38
commit
215cf6696e
1 changed files with 4 additions and 4 deletions
|
|
@ -218,16 +218,16 @@ namespace PepperDash.Essentials.Devices.Common.VideoCodec.ZoomRoom
|
||||||
{
|
{
|
||||||
return () =>
|
return () =>
|
||||||
{
|
{
|
||||||
Debug.Console(2, this, "PrivacyModeIsOnFeedbackFunc. IsInCall: {0} muteState: {1}", IsInCall, Configuration.Call.Microphone.Mute);
|
//Debug.Console(2, this, "PrivacyModeIsOnFeedbackFunc. IsInCall: {0} muteState: {1}", IsInCall, Configuration.Call.Microphone.Mute);
|
||||||
if (IsInCall)
|
if (IsInCall)
|
||||||
{
|
{
|
||||||
Debug.Console(2, this, "reporting muteState: ", Configuration.Call.Microphone.Mute);
|
//Debug.Console(2, this, "reporting muteState: ", Configuration.Call.Microphone.Mute);
|
||||||
return Configuration.Call.Microphone.Mute;
|
return Configuration.Call.Microphone.Mute;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
Debug.Console(2, this, "muteState: true", IsInCall);
|
//Debug.Console(2, this, "muteState: true", IsInCall);
|
||||||
return true;
|
return false;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue