From f295382c92b7d3bad7b253f65c37fbb4928c7511 Mon Sep 17 00:00:00 2001 From: Michael <35783820+mib1185@users.noreply.github.com> Date: Tue, 20 Feb 2024 17:15:55 +0100 Subject: [PATCH] Reset error state when Ecovacs bot is operational again (#110962) --- homeassistant/components/ecovacs/vacuum.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/ecovacs/vacuum.py b/homeassistant/components/ecovacs/vacuum.py index debd751bb79..a9990bc6fff 100644 --- a/homeassistant/components/ecovacs/vacuum.py +++ b/homeassistant/components/ecovacs/vacuum.py @@ -95,7 +95,7 @@ class EcovacsLegacyVacuum(StateVacuumEntity): This will not change the entity's state. If the error caused the state to change, that will come through as a separate on_status event """ - if error == "no_error": + if error in ["no_error", sucks.ERROR_CODES["100"]]: self.error = None else: self.error = error