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])},