From 4614b6b9bb8d1479a6d838a22774a4ba2c96f0c4 Mon Sep 17 00:00:00 2001 From: SchiZzA Date: Mon, 23 Feb 2026 15:42:13 +0100 Subject: [PATCH] Fixed WSLink bool in resend function. --- custom_components/sws12500/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_components/sws12500/__init__.py b/custom_components/sws12500/__init__.py index 3a88fc8..991cd36 100644 --- a/custom_components/sws12500/__init__.py +++ b/custom_components/sws12500/__init__.py @@ -86,7 +86,7 @@ class WeatherDataUpdateCoordinator(DataUpdateCoordinator): raise HTTPUnauthorized if self.config_entry.options.get(WINDY_ENABLED): - _ = await self.windy.push_data_to_windy(data) + _ = await self.windy.push_data_to_windy(data, _wslink) if self.config.options.get(POCASI_CZ_ENABLED): await self.pocasi.push_data_to_server(data, "WSLINK" if _wslink else "WU")