1
0
mirror of https://github.com/home-assistant/core.git synced 2026-07-09 15:55:29 +01:00

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
@@ -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