Hue: Guard for when there is no brightness (#35151)
This commit is contained in:
parent
42750088b9
commit
5b7daa9e0c
1 changed files with 3 additions and 0 deletions
|
@ -259,6 +259,9 @@ class HueLight(LightEntity):
|
||||||
else:
|
else:
|
||||||
bri = self.light.state.get("bri")
|
bri = self.light.state.get("bri")
|
||||||
|
|
||||||
|
if bri is None:
|
||||||
|
return bri
|
||||||
|
|
||||||
return hue_brightness_to_hass(bri)
|
return hue_brightness_to_hass(bri)
|
||||||
|
|
||||||
@property
|
@property
|
||||||
|
|
Loading…
Add table
Reference in a new issue