From c469bf2db98a46868ce9336a08ec2a6b6097bfb5 Mon Sep 17 00:00:00 2001 From: Fredrik Erlandsson Date: Tue, 7 Dec 2021 09:00:30 +0100 Subject: [PATCH] Fix point availability (#61144) --- homeassistant/components/point/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/point/__init__.py b/homeassistant/components/point/__init__.py index dee0ae1a492..5cbab59eabf 100644 --- a/homeassistant/components/point/__init__.py +++ b/homeassistant/components/point/__init__.py @@ -185,7 +185,7 @@ class MinutPointClient: async def _sync(self): """Update local list of devices.""" - if not await self._client.update() and self._is_available: + if not await self._client.update(): self._is_available = False _LOGGER.warning("Device is unavailable") async_dispatcher_send(self._hass, SIGNAL_UPDATE_ENTITY)