From 88398f80a39cc3ca0ba33128a2ef1821158e76a2 Mon Sep 17 00:00:00 2001 From: Pipiche <8291674+pipiche38@users.noreply.github.com> Date: Tue, 14 Jan 2025 18:04:07 +0100 Subject: [PATCH] use https://www.google.com instead of http:// --- Modules/checkingUpdate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/checkingUpdate.py b/Modules/checkingUpdate.py index d67c305f8..95fb6ada7 100644 --- a/Modules/checkingUpdate.py +++ b/Modules/checkingUpdate.py @@ -131,7 +131,7 @@ def is_zigate_firmware_available(self, currentMajorVersion, currentFirmwareVersi def is_internet_available(): try: - response = requests.get("http://www.google.com", timeout=3) + response = requests.get("https://www.google.com", timeout=3) # Check if the status code is a success code (2xx) return response.status_code == 200 except requests.ConnectionError: