mirror of
https://github.com/home-assistant/core.git
synced 2025-07-07 13:27:09 +00:00
Cast standby_state to int before testing.
This commit is contained in:
parent
86973226b1
commit
ddbceebd65
@ -119,7 +119,7 @@ class WemoSwitch(SwitchDevice):
|
||||
def detail_state(self):
|
||||
"""Is the device on - or in standby."""
|
||||
if self.insight_params:
|
||||
standby_state = self.insight_params['state']
|
||||
standby_state = int(self.insight_params['state'])
|
||||
if standby_state == WEMO_ON:
|
||||
return STATE_OFF
|
||||
elif standby_state == WEMO_OFF:
|
||||
|
Loading…
x
Reference in New Issue
Block a user