From 938ca398018957e28d4953c46fc47684b4fec434 Mon Sep 17 00:00:00 2001 From: ettolrach Date: Fri, 6 Jun 2025 02:00:53 +0100 Subject: [PATCH] Update Lothian endpoint to new URL --- timetable-server-proxy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/timetable-server-proxy b/timetable-server-proxy index f504e11..4b44de4 100755 --- a/timetable-server-proxy +++ b/timetable-server-proxy @@ -11,7 +11,7 @@ def index(): @app.route('/api/stop/') def proxy_stop(stop_id): - res = requests.get(f"https://tfeapp.com/api/website/stop_times.php?stop_id={stop_id}") + res = requests.get(f"https://lothianapi.co.uk/departureBoards/website?stops={stop_id}") return res.json() @app.route('/api/colors')