From 7639e12ff2e242520eb837c26507a9e1667c73b1 Mon Sep 17 00:00:00 2001 From: LG-ThinQ-Integration Date: Thu, 21 Aug 2025 20:40:22 +0900 Subject: [PATCH] Initialize the coordinator's data to include data.options. (#150839) Co-authored-by: yunseon.park --- homeassistant/components/lg_thinq/coordinator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/lg_thinq/coordinator.py b/homeassistant/components/lg_thinq/coordinator.py index 9f84c422277..ffdde3188db 100644 --- a/homeassistant/components/lg_thinq/coordinator.py +++ b/homeassistant/components/lg_thinq/coordinator.py @@ -37,7 +37,7 @@ class DeviceDataUpdateCoordinator(DataUpdateCoordinator[dict[str, Any]]): name=f"{DOMAIN}_{ha_bridge.device.device_id}", ) - self.data = {} + self.data = ha_bridge.update_status(None) self.api = ha_bridge self.device_id = ha_bridge.device.device_id self.sub_id = ha_bridge.sub_id