From 31a8a432252fba813a5585168fb269b63af752e8 Mon Sep 17 00:00:00 2001 From: James Pattinson Date: Sun, 21 Jun 2026 09:03:38 -0400 Subject: [PATCH] Correct weather proxy path --- src/components/WeatherPanel.astro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/WeatherPanel.astro b/src/components/WeatherPanel.astro index 79e481a..0d25c84 100644 --- a/src/components/WeatherPanel.astro +++ b/src/components/WeatherPanel.astro @@ -2,7 +2,7 @@ const weatherBase = (import.meta.env.PUBLIC_WEATHER_BASE ?? 'https://wx.swansea-airport.wales').replace(/\/$/, ''); const mqttHost = import.meta.env.PUBLIC_WEATHER_MQTT_HOST ?? `${weatherBase}/mqtt`; const archiveEndpoint = `${weatherBase}/agcs/archive.php`; -const pressureEndpoint = `${weatherBase}/wlproxy.php?api=current/195562`; +const pressureEndpoint = `${weatherBase}/agcs/wlproxy.php?api=current/195562`; ---