Component deconz: Fix dark attribute on presence sensors (#12691)
pydeconz changed PRESENCE to be an array in v25, so this code hasn't worked since that change.pull/12739/head
parent
21d8ecdacd
commit
f396266c74
|
@ -99,6 +99,6 @@ class DeconzBinarySensor(BinarySensorDevice):
|
|||
attr = {
|
||||
ATTR_BATTERY_LEVEL: self._sensor.battery,
|
||||
}
|
||||
if self._sensor.type == PRESENCE:
|
||||
if self._sensor.type in PRESENCE:
|
||||
attr['dark'] = self._sensor.dark
|
||||
return attr
|
||||
|
|
Loading…
Reference in New Issue