Skip to content

Commit

Permalink
Merge pull request #61 from nao-pon/fix#60
Browse files Browse the repository at this point in the history
fix #60 corrected wrong argument
  • Loading branch information
hristo-atanasov authored Jan 3, 2022
2 parents 2d40d64 + 10d2f06 commit 45cc0b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/tasmota_irhvac/climate.py
Original file line number Diff line number Diff line change
Expand Up @@ -522,7 +522,7 @@ async def async_added_to_hass(self):

temp_sensor_state = self.hass.states.get(self._temp_sensor)
if temp_sensor_state and temp_sensor_state.state != STATE_UNKNOWN and temp_sensor_state.state != STATE_UNAVAILABLE:
self._async_update_temp(temp_sensor_state.state)
self._async_update_temp(temp_sensor_state)


if self._humidity_sensor:
Expand Down

0 comments on commit 45cc0b3

Please sign in to comment.