Skip to content

Commit d30e929

Browse files
committed
Fix for 2025.8
1 parent 23bcedc commit d30e929

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

custom_components/unfoldedcircle/manifest.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
"iot_class": "local_push",
1010
"issue_tracker": "https://github.com/JackJPowell/hass-unfoldedcircle/issues",
1111
"requirements": [
12-
"websockets>=12.0,<14",
13-
"pyUnfoldedCircleRemote==0.14.1",
12+
"websockets>=12.0,<16.0",
13+
"pyUnfoldedCircleRemote==0.14.2",
1414
"wakeonlan==3.1.0"
1515
],
16-
"version": "0.15.1",
16+
"version": "0.15.2",
1717
"zeroconf": ["_uc-remote._tcp.local."]
1818
}

custom_components/unfoldedcircle/remote.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ def extra_state_attributes(self) -> Mapping[str, Any] | None:
275275

276276
def update_state(self) -> bool:
277277
"""Update current activity and extra state attributes"""
278-
# self._attr_is_on = False
278+
self._attr_is_on = False
279279
self._attr_current_activity = None
280280
if hasattr(self.coordinator.api, "activities"):
281281
for activity in self.coordinator.api.activities:

0 commit comments

Comments
 (0)