summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorBirte Kristina Friesel <derf@finalrewind.org>2024-04-27 14:05:06 +0200
committerBirte Kristina Friesel <derf@finalrewind.org>2024-04-27 14:05:06 +0200
commit4c6612a0656abcc930a82f2d4ea310e16186156c (patch)
tree2ac3f8127cfd589e0ac934bc71e7be73e3b3b43e /lib
parent89ea4891edbebc0ae8f54212170d853625a95b5a (diff)
set wagon->group_index even if train type is unknown
Diffstat (limited to 'lib')
-rw-r--r--lib/Travel/Status/DE/DBWagenreihung.pm6
-rw-r--r--lib/Travel/Status/DE/DBWagenreihung/Wagon.pm7
2 files changed, 8 insertions, 5 deletions
diff --git a/lib/Travel/Status/DE/DBWagenreihung.pm b/lib/Travel/Status/DE/DBWagenreihung.pm
index f3f7ad9..27ec01d 100644
--- a/lib/Travel/Status/DE/DBWagenreihung.pm
+++ b/lib/Travel/Status/DE/DBWagenreihung.pm
@@ -338,10 +338,8 @@ sub parse_wagons {
for my $i ( 0 .. $#wagon_groups ) {
my $group = $wagon_groups[$i];
my $tt = $self->wagongroup_subtype( @{$group} );
- if ($tt) {
- for my $wagon ( @{$group} ) {
- $wagon->set_traintype( $i, $tt );
- }
+ for my $wagon ( @{$group} ) {
+ $wagon->set_traintype( $i, $tt );
}
}
diff --git a/lib/Travel/Status/DE/DBWagenreihung/Wagon.pm b/lib/Travel/Status/DE/DBWagenreihung/Wagon.pm
index 27f2e36..646028f 100644
--- a/lib/Travel/Status/DE/DBWagenreihung/Wagon.pm
+++ b/lib/Travel/Status/DE/DBWagenreihung/Wagon.pm
@@ -203,7 +203,12 @@ sub parse_type {
sub set_traintype {
my ( $self, $group_index, $tt ) = @_;
- $self->{group_index} = $group_index;
+ $self->{group_index} = $group_index;
+
+ if ( not $tt ) {
+ return;
+ }
+
$self->{train_subtype} = $tt;
if ( not $self->{number} or not exists( $type_attributes{$tt} ) ) {