diff options
-rw-r--r-- | perllib/FixMyStreet/Cobrand/UK.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perllib/FixMyStreet/Cobrand/UK.pm b/perllib/FixMyStreet/Cobrand/UK.pm index f99f29eb4..f7b71b0ae 100644 --- a/perllib/FixMyStreet/Cobrand/UK.pm +++ b/perllib/FixMyStreet/Cobrand/UK.pm @@ -351,7 +351,7 @@ sub get_body_handler_for_problem { my ($self, $row) = @_; my @bodies = values %{$row->bodies}; - my %areas = map { %{$_->areas} } @bodies; + my %areas = map { %{$_->areas} } grep { $_->name ne 'TfL' } @bodies; my $cobrand = FixMyStreet::Cobrand->body_handler(\%areas); return $cobrand if $cobrand; |