fix: detecting podg in timetables

This commit is contained in:
2024-07-12 13:58:43 +02:00
parent f17fedc976
commit b3f7108979
+1 -1
View File
@@ -125,7 +125,7 @@ export const useMainStore = defineStore('mainStore', {
const timetablePath = trainObj.timetableData.timetablePath;
trainObj.timetableData.followingStops.forEach((stop, i) => {
if (/strong|podg\.|pe\./.test(stop.stopName)) {
if (/strong|podg|pe/.test(stop.stopName)) {
const checkpointTrain: CheckpointTrain = {
train: trainObj,
checkpointStop: stop,