Skip to content

Commit

Permalink
Correct error accessing "port" in EcoRT2 device
Browse files Browse the repository at this point in the history
  • Loading branch information
pcourbin committed Jan 4, 2025
1 parent 95bc415 commit 11cc84f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/ecodevices_rt2/device_ecodevicesrt2.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def __init__(

self._supported_features = 0

self._configuration_url = f"http://{self.ecort2.host}:{self.ecort2.port}"
self._configuration_url = f"http://{self.ecort2.host}:{self.ecort2._port}"

self._attr_unique_id = "_".join(
[DOMAIN, self.ecort2.host, self._component, slugify(self._attr_name)]
Expand Down

0 comments on commit 11cc84f

Please sign in to comment.