From 4cce2458b070129da95352139a3dbd316af17c86 Mon Sep 17 00:00:00 2001 From: "Phill (pssc)" Date: Thu, 25 Jul 2024 15:16:34 +0100 Subject: [PATCH] Update homeassistant/components/squeezebox/entity.py Co-authored-by: Joost Lekkerkerker --- homeassistant/components/squeezebox/entity.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/squeezebox/entity.py b/homeassistant/components/squeezebox/entity.py index 032d64fc6cf..d56ae7859c1 100644 --- a/homeassistant/components/squeezebox/entity.py +++ b/homeassistant/components/squeezebox/entity.py @@ -22,7 +22,7 @@ class LMSStatusEntity(CoordinatorEntity[LMSStatusDataUpdateCoordinator]): super().__init__(coordinator, context=description.key) self.entity_description = description self._attr_translation_key = description.key - self._attr_unique_id = f"{coordinator.data[STATUS_QUERY_UUID]}{description.key}" + self._attr_unique_id = f"{coordinator.data[STATUS_QUERY_UUID]}_{description.key}" self._attr_device_info = DeviceInfo( identifiers={(DOMAIN, coordinator.data[STATUS_QUERY_UUID])},