diff options
author | Daniel Friesel <derf@finalrewind.org> | 2014-11-24 13:21:47 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2014-11-24 13:21:47 +0100 |
commit | af3e174aaf9d2560fcc49ebc6f6ea5e24545fbac (patch) | |
tree | 57cdbfa26cd0d7d3616231d638ef567724b92426 /lib/Travel/Status | |
parent | b295d78bcf305cf222c65fc2cad0c52ae3d42793 (diff) |
Stations.pm: get_station_by_name returns an array
Diffstat (limited to 'lib/Travel/Status')
-rw-r--r-- | lib/Travel/Status/DE/IRIS/Stations.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Travel/Status/DE/IRIS/Stations.pm b/lib/Travel/Status/DE/IRIS/Stations.pm index b8dd855..1339471 100644 --- a/lib/Travel/Status/DE/IRIS/Stations.pm +++ b/lib/Travel/Status/DE/IRIS/Stations.pm @@ -15257,7 +15257,7 @@ sub get_station_by_name { $nname = normalize($nname); $actual_match = firstval { $nname eq normalize( lc( $_->[1] ) ) } @stations; if ($actual_match) { - return $actual_match; + return ($actual_match); } return ( grep { $_->[1] =~ m{$name}i } @stations ); |