From 2e14c2e3e4dafa976cecab2721682553d90eb01e Mon Sep 17 00:00:00 2001 From: Birte Kristina Friesel Date: Thu, 7 Sep 2023 21:19:43 +0200 Subject: Fix intermediate stop display for journeys without real-time data, e.g. H-Bahn --- lib/Travelynx/Model/InTransit.pm | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'lib/Travelynx/Model') diff --git a/lib/Travelynx/Model/InTransit.pm b/lib/Travelynx/Model/InTransit.pm index aec193f..d06b94e 100644 --- a/lib/Travelynx/Model/InTransit.pm +++ b/lib/Travelynx/Model/InTransit.pm @@ -270,9 +270,11 @@ sub postprocess { if ( $times->{rt_arr} ) { $times->{rt_arr} = epoch_to_dt( $times->{rt_arr} ); - $times->{rt_arr_countdown} - = $times->{rt_arr}->epoch - $epoch; + $times->{arr_delay} + = $times->{rt_arr}->epoch - $times->{sched_arr}->epoch; } + $times->{arr} = $times->{rt_arr} || $times->{sched_arr}; + $times->{arr_countdown} = $times->{arr}->epoch - $epoch; } if ( $times->{sched_dep} and ref( $times->{sched_dep} ) ne 'DateTime' ) @@ -282,9 +284,11 @@ sub postprocess { if ( $times->{rt_dep} ) { $times->{rt_dep} = epoch_to_dt( $times->{rt_dep} ); - $times->{rt_dep_countdown} - = $times->{rt_dep}->epoch - $epoch; + $times->{dep_delay} + = $times->{rt_dep}->epoch - $times->{sched_dep}->epoch; } + $times->{dep} = $times->{rt_dep} || $times->{sched_dep}; + $times->{dep_countdown} = $times->{dep}->epoch - $epoch; } } } -- cgit v1.2.3