diff options
author | Birte Kristina Friesel <derf@finalrewind.org> | 2023-12-27 10:59:35 +0100 |
---|---|---|
committer | Birte Kristina Friesel <derf@finalrewind.org> | 2023-12-27 10:59:35 +0100 |
commit | d47195a0cf30a64ca7afcbbeed6edb6b54039104 (patch) | |
tree | 3a993c3c303958fd5b5e08058c01cb995ff91477 /lib/Travelynx/Command/work.pm | |
parent | c24edf3027ab4513e99e3aba876fc19199c35b12 (diff) |
Switch to Travel::Status::DE::HAFAS 5.x
Diffstat (limited to 'lib/Travelynx/Command/work.pm')
-rw-r--r-- | lib/Travelynx/Command/work.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Travelynx/Command/work.pm b/lib/Travelynx/Command/work.pm index 09649a3..a02618b 100644 --- a/lib/Travelynx/Command/work.pm +++ b/lib/Travelynx/Command/work.pm @@ -46,10 +46,10 @@ sub run { my $found_dep; my $found_arr; for my $stop ( $journey->route ) { - if ( $stop->eva == $dep ) { + if ( $stop->loc->eva == $dep ) { $found_dep = $stop; } - if ( $arr and $stop->eva == $arr ) { + if ( $arr and $stop->loc->eva == $arr ) { $found_arr = $stop; last; } |