Skip to content

Commit 2dd0d69

Browse files
edenhausfrenck
authored andcommitted
Bump deebot-client to 15.0.0 (home-assistant#153125)
1 parent 6783c4a commit 2dd0d69

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

homeassistant/components/ecovacs/image.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,9 @@ async def async_added_to_hass(self) -> None:
6969
await super().async_added_to_hass()
7070

7171
async def on_info(event: CachedMapInfoEvent) -> None:
72-
self._attr_extra_state_attributes["map_name"] = event.name
72+
for map_obj in event.maps:
73+
if map_obj.using:
74+
self._attr_extra_state_attributes["map_name"] = map_obj.name
7375

7476
async def on_changed(event: MapChangedEvent) -> None:
7577
self._attr_image_last_updated = event.when

homeassistant/components/ecovacs/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@
66
"documentation": "https://www.home-assistant.io/integrations/ecovacs",
77
"iot_class": "cloud_push",
88
"loggers": ["sleekxmppfs", "sucks", "deebot_client"],
9-
"requirements": ["py-sucks==0.9.11", "deebot-client==14.0.0"]
9+
"requirements": ["py-sucks==0.9.11", "deebot-client==15.0.0"]
1010
}

requirements_all.txt

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

requirements_test_all.txt

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)