diff --git a/src/PepperDash.Essentials.Core/PartitionSensor/EssentialsPartitionController.cs b/src/PepperDash.Essentials.Core/PartitionSensor/EssentialsPartitionController.cs index 55c49727..800299b8 100644 --- a/src/PepperDash.Essentials.Core/PartitionSensor/EssentialsPartitionController.cs +++ b/src/PepperDash.Essentials.Core/PartitionSensor/EssentialsPartitionController.cs @@ -77,7 +77,14 @@ namespace PepperDash.Essentials.Core { if (IsInAutoMode) { - PartitionPresentFeedback.FireUpdate(); + if(e.BoolValue) + { + PartitionPresent = true; + } + else + { + PartitionPresent = false; + } } } @@ -132,7 +139,6 @@ namespace PepperDash.Essentials.Core if (!IsInAutoMode) { PartitionPresent = true; - PartitionPresentFeedback.FireUpdate(); } } @@ -141,7 +147,6 @@ namespace PepperDash.Essentials.Core if (!IsInAutoMode) { PartitionPresent = false; - PartitionPresentFeedback.FireUpdate(); } }