1 parent d8159b3 commit f2a9a04Copy full SHA for f2a9a04
1 file changed
dartDown.js
@@ -73,7 +73,7 @@ async function dartDown() {
73
return estimate;
74
})
75
.filter((estimate) => parseInt(estimate.Duein) >= MINUTE_CUTOFF) // Keep trains that are due in less than the cutoff
76
- .filter((estimate) => estimate.Traintype === 'DART10') // Keep only DART trains
+ .filter((estimate) => estimate.Traintype === 'DART10' || estimate.Traintype === 'DART') // Keep only DART trains
77
.sort((a, b) => parseInt(a.Duein) - parseInt(b.Duein));
78
79
// Hide the error state
0 commit comments