From 12279801b62350a2b0b520970025e3bb99ed5eae 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 671463a2c6b7..eab30379e233 100644 --- a/homeassistant/components/melcloud_home/coordinator.py +++ b/homeassistant/components/melcloud_home/coordinator.py @@ -176,7 +176,7 @@ class MelCloudHomeEnergyCoordinator(DataUpdateCoordinator[dict[str, float | None """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,