Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion custom_components/robovac/vacuum.py
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ def activity(self) -> VacuumActivity | None:
self._attr_tuya_state
)
return None
elif self._attr_tuya_state == "Charging" or self._attr_tuya_state == "completed":
elif self._attr_tuya_state == "Charging" or self._attr_tuya_state == "completed" or self._attr_tuya_state == "Completed":
return VacuumActivity.DOCKED
elif self._attr_tuya_state == "Recharge":
return VacuumActivity.RETURNING
Expand Down