Cast standby_state to int before testing.
This commit is contained in:
parent
86973226b1
commit
ddbceebd65
1 changed files with 1 additions and 1 deletions
|
@ -119,7 +119,7 @@ class WemoSwitch(SwitchDevice):
|
||||||
def detail_state(self):
|
def detail_state(self):
|
||||||
"""Is the device on - or in standby."""
|
"""Is the device on - or in standby."""
|
||||||
if self.insight_params:
|
if self.insight_params:
|
||||||
standby_state = self.insight_params['state']
|
standby_state = int(self.insight_params['state'])
|
||||||
if standby_state == WEMO_ON:
|
if standby_state == WEMO_ON:
|
||||||
return STATE_OFF
|
return STATE_OFF
|
||||||
elif standby_state == WEMO_OFF:
|
elif standby_state == WEMO_OFF:
|
||||||
|
|
Loading…
Add table
Reference in a new issue