From 7c63cfbbc7749f2e42d2669f194f9bfc392dd528 Mon Sep 17 00:00:00 2001 From: Alexei Chetroi Date: Thu, 25 Jun 2020 09:35:48 -0400 Subject: [PATCH] Use cached values for divisor/multiplier (#37070) --- homeassistant/components/zha/core/channels/homeautomation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/zha/core/channels/homeautomation.py b/homeassistant/components/zha/core/channels/homeautomation.py index 2601cf47573..d95180ce780 100644 --- a/homeassistant/components/zha/core/channels/homeautomation.py +++ b/homeassistant/components/zha/core/channels/homeautomation.py @@ -75,7 +75,7 @@ class ElectricalMeasurementChannel(ZigbeeChannel): async def async_initialize(self, from_cache): """Initialize channel.""" - await self.fetch_config(from_cache) + await self.fetch_config(True) await super().async_initialize(from_cache) async def fetch_config(self, from_cache):