From 44e4e727cce2184b3345533a43b61f8306cde49d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20S=C3=B8rensen?= Date: Mon, 27 Jun 2022 16:29:16 +0200 Subject: [PATCH] Use checkonline instead of version for online check (#3700) --- supervisor/supervisor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/supervisor/supervisor.py b/supervisor/supervisor.py index 8ce21c66b..f11903597 100644 --- a/supervisor/supervisor.py +++ b/supervisor/supervisor.py @@ -248,7 +248,7 @@ class Supervisor(CoreSysAttributes): timeout = aiohttp.ClientTimeout(total=10) try: await self.sys_websession.head( - "https://version.home-assistant.io/online.txt", timeout=timeout + "https://checkonline.home-assistant.io/online.txt", timeout=timeout ) except (ClientError, asyncio.TimeoutError): self.connectivity = False