From ccdd8005d02846e448c4f3d4bd34f0567d6cc3c1 Mon Sep 17 00:00:00 2001 From: Neil Dorin Date: Fri, 13 Nov 2020 14:54:26 -0700 Subject: [PATCH] Fixes inverted standby state feedback --- .../VideoCodec/CiscoCodec/xStatus.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/essentials-framework/Essentials Devices Common/Essentials Devices Common/VideoCodec/CiscoCodec/xStatus.cs b/essentials-framework/Essentials Devices Common/Essentials Devices Common/VideoCodec/CiscoCodec/xStatus.cs index 9af52bd2..9ec4fa44 100644 --- a/essentials-framework/Essentials Devices Common/Essentials Devices Common/VideoCodec/CiscoCodec/xStatus.cs +++ b/essentials-framework/Essentials Devices Common/Essentials Devices Common/VideoCodec/CiscoCodec/xStatus.cs @@ -1368,8 +1368,8 @@ namespace PepperDash.Essentials.Devices.Common.VideoCodec.Cisco { set { - // If the incoming value is "Of" it sets the BoolValue true, otherwise sets it false - BoolValue = value == "Off"; + // If the incoming value is "On" it sets the BoolValue true, otherwise sets it false + BoolValue = value == "On"; OnValueChanged(); } }