diff --git a/homeassistant/components/vacuum/neato.py b/homeassistant/components/vacuum/neato.py index dd27b2a33d2..2b601f9fb05 100644 --- a/homeassistant/components/vacuum/neato.py +++ b/homeassistant/components/vacuum/neato.py @@ -188,6 +188,8 @@ class NeatoConnectedVacuum(StateVacuumDevice): def return_to_base(self, **kwargs): """Set the vacuum cleaner to return to the dock.""" + if self._clean_state == STATE_CLEANING: + self.robot.pause_cleaning() self._clean_state = STATE_RETURNING self.robot.send_to_base()