From 857a3de066f2baf1637d5bda76ddb031ec492cf6 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Thu, 4 Jun 2026 20:17:50 +0200 Subject: [PATCH] Convert LinkPlay configuration_url to string for device registry (#173034) --- homeassistant/components/linkplay/entity.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/linkplay/entity.py b/homeassistant/components/linkplay/entity.py index 0bfb34af42c0..f2e244dfa558 100644 --- a/homeassistant/components/linkplay/entity.py +++ b/homeassistant/components/linkplay/entity.py @@ -51,7 +51,7 @@ class LinkPlayBaseEntity(Entity): ) self._attr_device_info = dr.DeviceInfo( - configuration_url=bridge.endpoint, + configuration_url=str(bridge.endpoint), connections=connections, hw_version=bridge.device.properties["hardware"], identifiers={(DOMAIN, bridge.device.uuid)},