From cb8d90be7e405d251dbb7f615701b69f4674e1ec Mon Sep 17 00:00:00 2001 From: Birte Kristina Friesel Date: Fri, 26 Dec 2025 11:38:40 +0100 Subject: EFA suggestions: show expected arrival time --- lib/Travelynx/Controller/Traveling.pm | 3 ++- templates/_suggestions_efa.html.ep | 5 ++++- 2 files changed, 6 insertions(+), 2 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; } } diff --git a/templates/_suggestions_efa.html.ep b/templates/_suggestions_efa.html.ep index 68fb4a9..bca5d74 100644 --- a/templates/_suggestions_efa.html.ep +++ b/templates/_suggestions_efa.html.ep @@ -1,6 +1,6 @@