From 215cf6696e379c15222a512d54d98c06e159857b Mon Sep 17 00:00:00 2001 From: Neil Dorin Date: Thu, 8 Sep 2022 14:22:53 -0600 Subject: [PATCH] fix(essentials): Set not in call state to report as unmuted --- .../VideoCodec/ZoomRoom/ZoomRoom.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/essentials-framework/Essentials Devices Common/Essentials Devices Common/VideoCodec/ZoomRoom/ZoomRoom.cs b/essentials-framework/Essentials Devices Common/Essentials Devices Common/VideoCodec/ZoomRoom/ZoomRoom.cs index a8b413a8..d3c0cd0f 100644 --- a/essentials-framework/Essentials Devices Common/Essentials Devices Common/VideoCodec/ZoomRoom/ZoomRoom.cs +++ b/essentials-framework/Essentials Devices Common/Essentials Devices Common/VideoCodec/ZoomRoom/ZoomRoom.cs @@ -218,16 +218,16 @@ namespace PepperDash.Essentials.Devices.Common.VideoCodec.ZoomRoom { 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) { - 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; } else { - Debug.Console(2, this, "muteState: true", IsInCall); - return true; + //Debug.Console(2, this, "muteState: true", IsInCall); + return false; } }; }