Only report color temp when in the correct color mode (#15791)

This commit is contained in:
Robert Svensson 2018-08-03 13:56:54 +02:00 committed by Paulus Schoutsen
parent 0f844311c9
commit cdb86ed154

View File

@ -98,6 +98,9 @@ class DeconzLight(Light):
@property
def color_temp(self):
"""Return the CT color value."""
if self._light.colormode != 'ct':
return None
return self._light.ct
@property