From 76b322c6b378b0994d08887e1221159b7ed0e607 Mon Sep 17 00:00:00 2001 From: Mick Vleeshouwer Date: Tue, 7 Nov 2023 13:10:14 +0100 Subject: [PATCH] Retrieve manufacturer and configuration_url from client in Overkiz integration (#103585) Retrieve manufacturer and configuration_url from client --- homeassistant/components/overkiz/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/homeassistant/components/overkiz/__init__.py b/homeassistant/components/overkiz/__init__.py index 6ca082ace76..95fc2af8e06 100644 --- a/homeassistant/components/overkiz/__init__.py +++ b/homeassistant/components/overkiz/__init__.py @@ -129,10 +129,10 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool: config_entry_id=entry.entry_id, identifiers={(DOMAIN, gateway.id)}, model=gateway.sub_type.beautify_name if gateway.sub_type else None, - manufacturer=server.manufacturer, + manufacturer=client.server.manufacturer, name=gateway.type.beautify_name if gateway.type else gateway.id, sw_version=gateway.connectivity.protocol_version, - configuration_url=server.configuration_url, + configuration_url=client.server.configuration_url, ) await hass.config_entries.async_forward_entry_setups(entry, PLATFORMS)