diff --git a/src/data/stationData.json b/src/data/stationData.json index 36f05ed..34e854a 100644 --- a/src/data/stationData.json +++ b/src/data/stationData.json @@ -2080,5 +2080,26 @@ false, false, false + ], + [ + "Stare Lipowo", + "https://td2.info.pl/scenerie/stare-lipowo/", + "", + null, + "", + "NIE", + "współczesna", + "SCS", + "TAK (Szlaki Dw, Pk, Pr-SL)", + "TAK", + 0, + 0, + 4, + 0, + ["Stare Lipowo", "Przęsy"], + null, + false, + false, + false ] ] diff --git a/src/store/store.ts b/src/store/store.ts index 06e8ff4..8207f86 100644 --- a/src/store/store.ts +++ b/src/store/store.ts @@ -616,7 +616,7 @@ export default class Store extends VuexModule { for (let checkpoint of station.checkpoints) { timetableList.reduce((acc, data) => { data.followingStops - .filter(stop => stop.stopNameRAW === checkpoint.checkpointName) + .filter(stop => stop.stopNameRAW.toLowerCase() === checkpoint.checkpointName.toLowerCase()) .forEach(stopInfo => { // const stopInfo = data.followingStops[stopInfoIndex];