Fix Hue motion sensor state if sensor is disabled (#63000)

This commit is contained in:
Marcel van der Veldt
2021-12-29 17:54:53 +01:00
committed by GitHub
parent a8fe9f2eff
commit f28c66ce19

View File

@@ -84,6 +84,9 @@ class HueMotionSensor(HueBinarySensorBase):
@property
def is_on(self) -> bool | None:
"""Return true if the binary sensor is on."""
if not self.resource.enabled:
# Force None (unknown) if the sensor is set to disabled in Hue
return None
return self.resource.motion.motion
@property