Fixes inverted standby state feedback

This commit is contained in:
Neil Dorin
2020-11-13 14:54:26 -07:00
parent 1d184f0f5e
commit ccdd8005d0

View File

@@ -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();
}
}