Helper::Csv: is_known in dispatcher gefixt
authorSven Schöling <s.schoeling@linet-services.de>
Fri, 17 Jun 2016 12:43:24 +0000 (14:43 +0200)
committerSven Schöling <s.schoeling@linet-services.de>
Fri, 17 Jun 2016 12:43:24 +0000 (14:43 +0200)
SL/Helper/Csv/Dispatcher.pm

index a0f59fc..418c184 100644 (file)
@@ -99,8 +99,8 @@ sub apply {
 }
 
 sub is_known {
-  my ($self, $col) = @_;
-  return grep { $col eq $_->{key} } $self->_specs;
+  my ($self, $col, $row) = @_;
+  return grep { $col eq $_->{key} } @{ $self->_specs->[$row // 0] };
 }
 
 sub parse_profile {