summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorBirte Kristina Friesel <derf@finalrewind.org>2025-12-26 11:38:40 +0100
committerBirte Kristina Friesel <derf@finalrewind.org>2025-12-26 11:38:40 +0100
commitcb8d90be7e405d251dbb7f615701b69f4674e1ec (patch)
tree429c9ad964fe8a7636924bf44bcad3346da0cb23 /lib
parent7419eab1f7cb680a6a950b617096cb75ad429c43 (diff)
EFA suggestions: show expected arrival timeHEAD2.17.39main
Diffstat (limited to 'lib')
-rwxr-xr-xlib/Travelynx/Controller/Traveling.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Travelynx/Controller/Traveling.pm b/lib/Travelynx/Controller/Traveling.pm
index 5595e3c..30c579e 100755
--- a/lib/Travelynx/Controller/Traveling.pm
+++ b/lib/Travelynx/Controller/Traveling.pm
@@ -1379,7 +1379,8 @@ sub station {
destination: for my $dest (@destinations) {
for my $stop ( $dep->route_post ) {
if ( $stop->full_name eq $dest->{name} ) {
- push( @suggestions, [ $dep, $dest ] );
+ push( @suggestions,
+ [ $dep, $dest, $stop->arr ] );
next destination;
}
}