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