From 60da425c6b20698157247f41b23b19ad65ca4e7b Mon Sep 17 00:00:00 2001 From: Sven van Ginkel Date: Thu, 12 Feb 2026 19:51:02 +0000 Subject: [PATCH] chore: use same url for http check --- app/Jobs/CheckForInternetConnectionJob.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Jobs/CheckForInternetConnectionJob.php b/app/Jobs/CheckForInternetConnectionJob.php index 2498e6460..f40eb9570 100644 --- a/app/Jobs/CheckForInternetConnectionJob.php +++ b/app/Jobs/CheckForInternetConnectionJob.php @@ -82,7 +82,7 @@ public function handle(): void */ protected function httpFallbackSucceeds(): bool { - $url = config('speedtest.preflight.external_ip_url'); + $url = config('speedtest.preflight.internet_check_hostname'); try { $response = Http::retry(3, 100)