From 1594ba93277825a02d1b989df2db34ae98a54429 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Tue, 26 Jul 2022 15:36:22 +0200 Subject: _checked_out: move get_connecting_trains call to controller --- lib/Travelynx/Controller/Traveling.pm | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/Travelynx/Controller/Traveling.pm b/lib/Travelynx/Controller/Traveling.pm index 991526e..eb8a657 100755 --- a/lib/Travelynx/Controller/Traveling.pm +++ b/lib/Travelynx/Controller/Traveling.pm @@ -362,7 +362,16 @@ sub status_card { ); } else { - $self->render( '_checked_out', journey => $status ); + my @connecting_trains; + my $now = DateTime->now( time_zone => 'Europe/Berlin' ); + if ( $now->epoch - $status->{timestamp}->epoch < ( 30 * 60 ) ) { + @connecting_trains = $self->get_connecting_trains; + } + $self->render( + '_checked_out', + journey => $status, + connections => \@connecting_trains + ); } } -- cgit v1.2.3