From 662c05ade568d9b721337666dcd2e657d53f3e59 Mon Sep 17 00:00:00 2001 From: sleevezipper Date: Fri, 8 Jan 2021 17:37:12 +0100 Subject: [PATCH] fix merge mistake --- hass-workstation-service/Data/ConfigurationService.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/hass-workstation-service/Data/ConfigurationService.cs b/hass-workstation-service/Data/ConfigurationService.cs index 177d700..b25afda 100644 --- a/hass-workstation-service/Data/ConfigurationService.cs +++ b/hass-workstation-service/Data/ConfigurationService.cs @@ -93,6 +93,7 @@ namespace hass_workstation_service.Data break; case "IdleTimeSensor": sensor = new IdleTimeSensor(publisher, configuredSensor.UpdateInterval, configuredSensor.Name, configuredSensor.Id); + break; case "WebcamActiveSensor": sensor = new WebcamActiveSensor(publisher, configuredSensor.UpdateInterval, configuredSensor.Name, configuredSensor.DetectionMode, configuredSensor.Id); break;