Skip to content

Commit

Permalink
Actually ride for multiple stops; small silly bug
Browse files Browse the repository at this point in the history
  • Loading branch information
dabreegster committed May 25, 2024
1 parent 7c78f60 commit f9e086c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/src/gtfs/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ impl GtfsModel {
break;
}

if next_step.time1 > time {
if next_step.time1 >= time {
results.push(next_step);
}
}
Expand Down

0 comments on commit f9e086c

Please sign in to comment.