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

@ -79,9 +79,11 @@ sub get_connecting_trains_p {
my $can_check_in = not $arr_epoch || ( $arr_countdown // 1 ) < 0;
$self->iris->get_departures_p(
station => $eva,
lookbehind => 10,
lookahead => $can_check_in ? 40 : ( ${arr_countdown} / 60 + 40 ),
station => $eva,
lookbehind => 10,
lookahead => $can_check_in
? 40
: ( ( ${arr_countdown} // 0 ) / 60 + 40 ),
with_related => 1
)->then(
sub {