get_connecting_trains_p: handle uninitialized arr_countdown

This commit is contained in:
Daniel Friesel 2022-09-03 17:58:12 +02:00
parent dd151dc686
commit 3b9db4bfd4
No known key found for this signature in database
GPG key ID: 100D5BFB5166E005

View file

@ -81,7 +81,9 @@ sub get_connecting_trains_p {
$self->iris->get_departures_p( $self->iris->get_departures_p(
station => $eva, station => $eva,
lookbehind => 10, lookbehind => 10,
lookahead => $can_check_in ? 40 : ( ${arr_countdown} / 60 + 40 ), lookahead => $can_check_in
? 40
: ( ( ${arr_countdown} // 0 ) / 60 + 40 ),
with_related => 1 with_related => 1
)->then( )->then(
sub { sub {