Skip to content

Commit e4b4fb2

Browse files
committed
missed one fix
1 parent f24d5c8 commit e4b4fb2

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

plugwise_usb/nodes/sense.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -571,7 +571,11 @@ async def _switch_group(self, response: PlugwiseResponse) -> bool:
571571
_LOGGER.warning("%s received %s", self.name, response)
572572
await gather(
573573
self._available_update_state(True, response.timestamp),
574-
self._hysteresis_state_update(response.switch_state, response.timestamp),
574+
self._hysteresis_state_update(
575+
response.switch_state,
576+
response.switch_group,
577+
response.timestamp,
578+
),
575579
)
576580
return True
577581

0 commit comments

Comments
 (0)