From ebf806111754d6584a7aa4b94e5066dd617b7101 Mon Sep 17 00:00:00 2001 From: Joost Lekkerkerker Date: Sun, 1 Oct 2023 20:55:00 +0200 Subject: [PATCH] Fix withings webhook name (#101221) --- homeassistant/components/withings/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/withings/__init__.py b/homeassistant/components/withings/__init__.py index aaef7bdb142..246bcc134d0 100644 --- a/homeassistant/components/withings/__init__.py +++ b/homeassistant/components/withings/__init__.py @@ -160,7 +160,7 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool: webhook_name = "Withings" if entry.title != DEFAULT_TITLE: - webhook_name += " ".join([webhook_name, entry.title]) + webhook_name = " ".join([DEFAULT_TITLE, entry.title]) webhook_register( hass,