From 33b62a1d9b21334efbc689a2d1ec8f96286befa7 Mon Sep 17 00:00:00 2001 From: Philipp Spinnler Date: Fri, 27 Jan 2023 11:21:41 +0100 Subject: [PATCH] Connection change --- script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script.js b/script.js index 4ba1f2f..83d667f 100644 --- a/script.js +++ b/script.js @@ -164,7 +164,7 @@ Vue.component('widget-public-transportation', { }, mounted() { setInterval(async () => { - const response = await axios.get(`${baseUrl}/public-transportation?connections=[["Hoelstein, Sued", "Liestal"]]`); + const response = await axios.get(`${baseUrl}/public-transportation?connections=[["Hölstein, Süd", "Liestal, Bahnhof"]]`); this.hoelstein = dayjs(response.data.connections[0].departure).format('HH:mm'); this.hoelsteinInMinutes = dayjs().to(response.data.connections[0].departure); }, 5000);