diff options
author | Birte Kristina Friesel <derf@finalrewind.org> | 2025-07-06 06:03:34 +0200 |
---|---|---|
committer | Birte Kristina Friesel <derf@finalrewind.org> | 2025-07-06 06:03:34 +0200 |
commit | 76afdec30eab3ee27c9d0e1818fe5fc8a0fb0efe (patch) | |
tree | 26af1c247d305b5e158952dea211c14bf998abd9 | |
parent | c39c78690e461be89a5ab23715d14ec84615e124 (diff) |
efa-m: show_stopseq: handle stops with no platform data
-rwxr-xr-x | bin/efa-m | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -387,8 +387,8 @@ sub show_stopseq { ), $stop->occupancy ? format_occupancy( $stop->occupancy ) : q{}, $stop->full_name, - $stop->niveau, - $stop->platform + $stop->niveau // q{?}, + $stop->platform // q{} ); } } |