From 8ba07a828892929ba302c4141135cb5fa93ef06d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Mon, 13 Dec 2021 22:46:51 +0200 Subject: [PATCH] Add configuration_url to syncthru devices (#61508) --- homeassistant/components/syncthru/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/homeassistant/components/syncthru/__init__.py b/homeassistant/components/syncthru/__init__.py index a891bc50831..792267791eb 100644 --- a/homeassistant/components/syncthru/__init__.py +++ b/homeassistant/components/syncthru/__init__.py @@ -67,6 +67,7 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool: device_registry = dr.async_get(hass) device_registry.async_get_or_create( config_entry_id=entry.entry_id, + configuration_url=printer.url, connections=device_connections(printer), identifiers=device_identifiers(printer), model=printer.model(),