diff options
author | Daniel Friesel <derf@finalrewind.org> | 2019-05-03 10:52:30 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2019-05-03 10:52:30 +0200 |
commit | bc6a59d43ebaee8c29c46f0d11088e7710304fee (patch) | |
tree | a5464d4c16b7c2adb848f845b6e3701ef743f5cb /lib | |
parent | 973cccd494eb6b50e283b461644ee73e0b304e59 (diff) |
Do not show origin station in destination list1.1.3
Diffstat (limited to 'lib')
-rwxr-xr-x | lib/Travelynx.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Travelynx.pm b/lib/Travelynx.pm index 2cf1f58..a9e39bd 100755 --- a/lib/Travelynx.pm +++ b/lib/Travelynx.pm @@ -1473,12 +1473,12 @@ sub startup { my $is_after = 0; for my $station (@route) { - if ( $station eq $in_transit->{dep_name} ) { - $is_after = 1; - } if ($is_after) { push( @route_after, $station ); } + if ( $station eq $in_transit->{dep_name} ) { + $is_after = 1; + } } my $ts = $in_transit->{checkout_ts} |