Fix goodwe midnight error (#95041)

This commit is contained in:
Hmmbob 2023-06-22 09:35:53 +02:00 committed by GitHub
parent 27da7d68de
commit 3b24a943ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -243,7 +243,7 @@ class InverterSensor(CoordinatorEntity[GoodweUpdateCoordinator], SensorEntity):
In contrast to "total" sensors, these "daily" sensors need to be reset to 0 on midnight. In contrast to "total" sensors, these "daily" sensors need to be reset to 0 on midnight.
""" """
if not self.coordinator.last_update_success: if not self.coordinator.last_update_success:
self.coordinator.reset_sensor(self._sensor.id) self.coordinator.reset_sensor(self._sensor.id_)
self.async_write_ha_state() self.async_write_ha_state()
_LOGGER.debug("Goodwe reset %s to 0", self.name) _LOGGER.debug("Goodwe reset %s to 0", self.name)
next_midnight = dt_util.start_of_local_day( next_midnight = dt_util.start_of_local_day(