minotor 1.0.6 → 1.0.7

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.
@@ -13471,7 +13471,7 @@ class Timetable {
13471
13471
  for (let tripIndex = 0; tripIndex < route.stopTimes.length / stopsNumber; tripIndex++) {
13472
13472
  const stopTimeIndex = tripIndex * stopsNumber + stopIndex;
13473
13473
  const stopTime = route.stopTimes[stopTimeIndex];
13474
- if (stopTime.departure > after &&
13474
+ if (stopTime.departure >= after &&
13475
13475
  stopTime.pickUpType !== 'NOT_AVAILABLE') {
13476
13476
  return tripIndex;
13477
13477
  }
@@ -13485,7 +13485,7 @@ class Timetable {
13485
13485
  tripIndex >= 0; tripIndex--) {
13486
13486
  const stopTimeIndex = tripIndex * stopsNumber + stopIndex;
13487
13487
  const stopTime = route.stopTimes[stopTimeIndex];
13488
- if (stopTime.departure <= after) {
13488
+ if (stopTime.departure < after) {
13489
13489
  break;
13490
13490
  }
13491
13491
  if (stopTime.pickUpType !== 'NOT_AVAILABLE' &&