From 8f2abc2ee10a8e99b616b1b22bab8b2f47dc4822 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Mon, 3 Aug 2020 00:55:15 -1000 Subject: [PATCH] Fix harmony activity starting initial state (#38439) --- homeassistant/components/harmony/remote.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/harmony/remote.py b/homeassistant/components/harmony/remote.py index 1ebcfbaa760..fe2f0535308 100644 --- a/homeassistant/components/harmony/remote.py +++ b/homeassistant/components/harmony/remote.py @@ -140,7 +140,7 @@ class HarmonyRemote(remote.RemoteEntity, RestoreEntity): self._current_activity = ACTIVITY_POWER_OFF self.default_activity = activity self._activity_starting = None - self._is_initial_update = False + self._is_initial_update = True self._client = HarmonyClient(ip_address=host) self._config_path = out_path self.delay_secs = delay_secs