Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion custom_components/luxtronik/climate.py
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ def _handle_coordinator_update(
self._last_hvac_mode_before_preset = None

key = self.entity_description.luxtronik_key_current_temperature
if key is None:
if key is None or key == "":
self._attr_current_temperature = None
elif key.startswith("sensor."):
temp = self.hass.states.get(key)
Expand Down
Loading