mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-12 03:57:27 +00:00
Merge pull request #996 from PepperDash/hotfix/zoom-room-privacy-mute-notincall
Hotfix/zoom room privacy mute notincall
This commit is contained in:
commit
c0c67f6c15
2 changed files with 19 additions and 1 deletions
|
|
@ -224,6 +224,8 @@ namespace PepperDash.Essentials.Devices.Common.VideoCodec
|
|||
handler(this, new CodecCallStatusItemChangeEventArgs(item));
|
||||
}
|
||||
|
||||
PrivacyModeIsOnFeedback.FireUpdate();
|
||||
|
||||
if (AutoShareContentWhileInCall)
|
||||
{
|
||||
StartSharing();
|
||||
|
|
|
|||
|
|
@ -214,7 +214,23 @@ namespace PepperDash.Essentials.Devices.Common.VideoCodec.ZoomRoom
|
|||
|
||||
protected override Func<bool> PrivacyModeIsOnFeedbackFunc
|
||||
{
|
||||
get { return () => Configuration.Call.Microphone.Mute; }
|
||||
get
|
||||
{
|
||||
return () =>
|
||||
{
|
||||
//Debug.Console(2, this, "PrivacyModeIsOnFeedbackFunc. IsInCall: {0} muteState: {1}", IsInCall, Configuration.Call.Microphone.Mute);
|
||||
if (IsInCall)
|
||||
{
|
||||
//Debug.Console(2, this, "reporting muteState: ", Configuration.Call.Microphone.Mute);
|
||||
return Configuration.Call.Microphone.Mute;
|
||||
}
|
||||
else
|
||||
{
|
||||
//Debug.Console(2, this, "muteState: true", IsInCall);
|
||||
return false;
|
||||
}
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
protected override Func<bool> StandbyIsOnFeedbackFunc
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue