From 646da21b86922dc372ac241a16a3809b6d6ff41d Mon Sep 17 00:00:00 2001 From: Myron Blair Date: Sat, 18 Jul 2026 19:55:05 -0500 Subject: [PATCH] Update weather section location to Weatherford, TX 76088 (from Fort Worth) Co-Authored-By: Claude Sonnet 5 --- api/endpoints/stats_cache.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/endpoints/stats_cache.php b/api/endpoints/stats_cache.php index 416aee4..e3a8da3 100644 --- a/api/endpoints/stats_cache.php +++ b/api/endpoints/stats_cache.php @@ -213,7 +213,7 @@ if ($weatherAge > 1800) { }; $weatherRaw = curlGet( - 'https://wttr.in/FortWorth,TX?format=j1', + 'https://wttr.in/76088?format=j1', ['User-Agent: curl/7.88 Jarvis/1.0'], 15 ); @@ -245,7 +245,7 @@ if ($weatherAge > 1800) { cacheStore('weather', [ 'source' => 'wttr.in', - 'location' => 'Fort Worth, TX', + 'location' => 'Weatherford, TX', 'current' => [ 'temp' => (int)($cu['temp_F'] ?? 0), 'feels' => (int)($cu['FeelsLikeF'] ?? 0),