Check if robot has boundaries to update (#38030)
This commit is contained in:
parent
34751fcd86
commit
0cd8dce9df
1 changed files with 7 additions and 6 deletions
|
@ -264,12 +264,13 @@ class NeatoConnectedVacuum(StateVacuumEntity):
|
|||
maps["name"],
|
||||
robot_boundaries,
|
||||
)
|
||||
self._robot_boundaries += robot_boundaries["data"]["boundaries"]
|
||||
_LOGGER.debug(
|
||||
"List of boundaries for '%s': %s",
|
||||
self.entity_id,
|
||||
self._robot_boundaries,
|
||||
)
|
||||
if "boundaries" in robot_boundaries["data"]:
|
||||
self._robot_boundaries += robot_boundaries["data"]["boundaries"]
|
||||
_LOGGER.debug(
|
||||
"List of boundaries for '%s': %s",
|
||||
self.entity_id,
|
||||
self._robot_boundaries,
|
||||
)
|
||||
|
||||
@property
|
||||
def name(self):
|
||||
|
|
Loading…
Add table
Reference in a new issue