From a05fbdeedbab86e17402c0128d8140392ff04436 Mon Sep 17 00:00:00 2001 From: starkillerOG Date: Tue, 4 Apr 2023 11:48:14 +0200 Subject: [PATCH] Add async_write_ha_state to Reolink select (#90764) Add async_write_ha_state to select --- homeassistant/components/reolink/select.py | 1 + 1 file changed, 1 insertion(+) diff --git a/homeassistant/components/reolink/select.py b/homeassistant/components/reolink/select.py index a994b7d353b..d1da30a01a8 100644 --- a/homeassistant/components/reolink/select.py +++ b/homeassistant/components/reolink/select.py @@ -144,3 +144,4 @@ class ReolinkSelectEntity(ReolinkChannelCoordinatorEntity, SelectEntity): async def async_select_option(self, option: str) -> None: """Change the selected option.""" await self.entity_description.method(self._host.api, self._channel, option) + self.async_write_ha_state()