diff options
author | Daniel Friesel <derf@finalrewind.org> | 2023-02-04 21:17:45 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2023-02-04 21:17:45 +0100 |
commit | 6b4a82da32e28f48695e284f81931888bc2950e3 (patch) | |
tree | 6d421e7080fe78fbef726ce60163e630466fffe4 /lib/Travelynx/Model | |
parent | f115283cb82c49841dec2c154089600cc19a0e07 (diff) |
inconsistent journeys: link to journeys
Diffstat (limited to 'lib/Travelynx/Model')
-rwxr-xr-x | lib/Travelynx/Model/Journeys.pm | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/lib/Travelynx/Model/Journeys.pm b/lib/Travelynx/Model/Journeys.pm index defff0b..1239266 100755 --- a/lib/Travelynx/Model/Journeys.pm +++ b/lib/Travelynx/Model/Journeys.pm @@ -1486,8 +1486,14 @@ sub compute_stats { and $next_departure - $journey->{rt_arr_ts} < ( 60 * 60 ) ) { if ( $next_departure - $journey->{rt_arr_ts} < 0 ) { - push( @inconsistencies, - epoch_to_dt($next_departure)->strftime('%d.%m.%Y %H:%M') ); + push( + @inconsistencies, + [ + epoch_to_dt($next_departure) + ->strftime('%d.%m.%Y %H:%M'), + $journey->{id} + ] + ); } else { $interchange_real |