diff options
author | Birte Kristina Friesel <derf@finalrewind.org> | 2024-09-22 15:08:23 +0200 |
---|---|---|
committer | Birte Kristina Friesel <derf@finalrewind.org> | 2024-09-22 15:08:23 +0200 |
commit | 3dd1b3a53d48c5b1c76418fe37823ea97e58ccde (patch) | |
tree | f22f2b21ec93f95093908bae5cf3621bc9a083e8 /bin | |
parent | 1496b2a00bcbf0c2875a2b88b95ee39524cece6e (diff) |
Stop: Use place / name / full_name rather than just name_suf and name
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/efa-m | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -172,7 +172,7 @@ sub format_route { $output .= sprintf( " %5s %40s %s\n", $stop->arr->strftime('%H:%M'), - $stop->name, $stop->platform, + $stop->full_name, $stop->platform, ); } else { @@ -180,7 +180,7 @@ sub format_route { "%5s → %5s %40s %s\n", $stop->arr->strftime('%H:%M'), $stop->dep->strftime('%H:%M'), - $stop->name, $stop->platform, + $stop->full_name, $stop->platform, ); } } @@ -188,19 +188,19 @@ sub format_route { $output .= sprintf( "%5s %40s %s\n", $stop->arr->strftime('%H:%M'), - $stop->name, $stop->platform, + $stop->full_name, $stop->platform, ); } elsif ( defined $stop->dep ) { $output .= sprintf( " %5s %40s %s\n", $stop->dep->strftime('%H:%M'), - $stop->name, $stop->platform, + $stop->full_name, $stop->platform, ); } - elsif ( $stop->name ) { + elsif ( $stop->full_name ) { $output .= sprintf( " %40s %s\n", - $stop->name, $stop->platform, ); + $stop->full_name, $stop->platform, ); } else { $output .= "?\n"; @@ -346,7 +346,7 @@ sub show_results { if ( $edata{route} ) { $output_line[3] - = join( q{ }, map { $_->name_suf } $d->route_interesting ); + = join( q{ }, map { $_->name } $d->route_interesting ); } elsif ( $d->occupancy ) { if ( $d->occupancy eq 'MANY_SEATS' ) { |