diff options
| author | Birte Kristina Friesel <derf@finalrewind.org> | 2025-11-15 18:34:50 +0100 |
|---|---|---|
| committer | Birte Kristina Friesel <derf@finalrewind.org> | 2025-11-15 18:34:50 +0100 |
| commit | 62b239c8b274f5e1b0e3305031a664bb52e6061f (patch) | |
| tree | 981d219fa3a653e0b3bf9fcf8bf893e5852852d6 | |
| parent | cfb8730aa3e416d30928ba3a716983852d78ae39 (diff) | |
Group: Fix another potential octal pitfall
| -rw-r--r-- | lib/Travel/Status/DE/DBRIS/Formation/Group.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Travel/Status/DE/DBRIS/Formation/Group.pm b/lib/Travel/Status/DE/DBRIS/Formation/Group.pm index 96af59f..fa8ca40 100644 --- a/lib/Travel/Status/DE/DBRIS/Formation/Group.pm +++ b/lib/Travel/Status/DE/DBRIS/Formation/Group.pm @@ -489,7 +489,7 @@ sub parse_model { next; } - if ( $carriage->model == 023 ) { + if ( $carriage->model == 23 ) { $ml{'023'}++; } elsif ($carriage->model == 91 |
