From 71452ba864feceb28e40c381de2c3af520a39462 Mon Sep 17 00:00:00 2001 From: Erwin Douna Date: Fri, 11 Sep 2026 17:28:13 +0200 Subject: [PATCH] Fix MELCloud Home energy interval (#181937) --- homeassistant/components/melcloud_home/coordinator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/melcloud_home/coordinator.py b/homeassistant/components/melcloud_home/coordinator.py index 4e2f85bf4606..51a59aeebec7 100644 --- a/homeassistant/components/melcloud_home/coordinator.py +++ b/homeassistant/components/melcloud_home/coordinator.py @@ -187,7 +187,7 @@ class MelCloudHomeTelemetryCoordinator( """Fetch energy telemetry for a unit without failing the whole update.""" try: energy = await self.client.get_energy_telemetry( - unit_id, from_dt=start_of_month, to_dt=now + unit_id, from_dt=start_of_month, to_dt=now, interval="Day" ) except ( MelCloudHomeAuthenticationError,