gtfs-to-html 2.10.5 → 2.10.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -499,7 +499,7 @@ function formatTripNameForCSV(trip, timetable) {
499
499
  }
500
500
 
501
501
  // package.json
502
- var version = "2.10.5";
502
+ var version = "2.10.6";
503
503
 
504
504
  // src/lib/utils.ts
505
505
  var isTimepoint = (stoptime) => {
@@ -1719,7 +1719,7 @@ function formatStopTime(stoptime, timetable, config) {
1719
1719
  timetable.interpolatedStopSymbolUsed = true;
1720
1720
  }
1721
1721
  }
1722
- if (stoptime.timepoint === null && stoptime.departure_time === null) {
1722
+ if (stoptime.timepoint === null && stoptime.departure_time === null && stoptime.stop_sequence === null) {
1723
1723
  stoptime.skipped = true;
1724
1724
  stoptime.classes.push("skipped");
1725
1725
  if (timetable.noServiceSymbol !== null) {