From 2541fbc37352de4944c091651a6af823e22ea218 Mon Sep 17 00:00:00 2001 From: gytisgreitai Date: Wed, 29 Dec 2021 16:44:30 +0200 Subject: [PATCH] fix hass friendly name --- hass.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hass.py b/hass.py index 836a89f..f05d3ce 100644 --- a/hass.py +++ b/hass.py @@ -26,7 +26,7 @@ def publish_hass_mqtt_discovery(mqtt_client): continue payload = { - "name": f"comfoair_{friendly_name}", + "name": f"{friendly_name}", "state_topic": f"comfoair/status/{id}", "availability_topic": "comfoair/status", "platform": "mqtt",