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.
package/dist/app/index.js CHANGED
@@ -407,7 +407,7 @@ function getAgencyGeoJSON(config2) {
407
407
  }
408
408
 
409
409
  // package.json
410
- var version = "2.10.5";
410
+ var version = "2.10.6";
411
411
 
412
412
  // src/lib/utils.ts
413
413
  var isTimepoint = (stoptime) => {
@@ -1573,7 +1573,7 @@ function formatStopTime(stoptime, timetable, config2) {
1573
1573
  timetable.interpolatedStopSymbolUsed = true;
1574
1574
  }
1575
1575
  }
1576
- if (stoptime.timepoint === null && stoptime.departure_time === null) {
1576
+ if (stoptime.timepoint === null && stoptime.departure_time === null && stoptime.stop_sequence === null) {
1577
1577
  stoptime.skipped = true;
1578
1578
  stoptime.classes.push("skipped");
1579
1579
  if (timetable.noServiceSymbol !== null) {