diff options
author | Daniel Friesel <daniel.friesel@uos.de> | 2019-09-18 18:08:06 +0200 |
---|---|---|
committer | Daniel Friesel <daniel.friesel@uos.de> | 2019-09-18 18:08:06 +0200 |
commit | aac8e2a0e1b870e9c40cecd15fd3d2fdfd484869 (patch) | |
tree | a89d68b2c832c5cb82dfbb5097f78d915ef163db /lib | |
parent | 2075c896559a460a147484845c93e202cc7301ef (diff) |
Save scheduled arrival time for cancelled trains1.9.3
Diffstat (limited to 'lib')
-rwxr-xr-x | lib/Travelynx.pm | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/lib/Travelynx.pm b/lib/Travelynx.pm index 7d3548e..860ba87 100755 --- a/lib/Travelynx.pm +++ b/lib/Travelynx.pm @@ -585,9 +585,10 @@ sub startup { ); } - if ( not( defined $train or $force ) ) { + if ( not defined $train ) { - # Arrival time via IRIS is unknown, try falling back to HAFAS + # Arrival time via IRIS is unknown, so the train probably has not + # arrived yet. Fall back to HAFAS. if ( my $station_data = first { $_->[0] eq $station } @{ $journey->{route} } ) { @@ -611,8 +612,10 @@ sub startup { ); } } - $self->run_hook( $uid, 'update' ); - return ( 1, undef ); + if ( not $force ) { + $self->run_hook( $uid, 'update' ); + return ( 1, undef ); + } } my $has_arrived = 0; |