diff options
author | Dave Arter <davea@mysociety.org> | 2018-06-22 16:05:19 +0100 |
---|---|---|
committer | Dave Arter <davea@mysociety.org> | 2018-06-22 16:05:19 +0100 |
commit | 43ef59400d632c3c29321c6908128932a31148a7 (patch) | |
tree | df26eb3248f461e96902f18a9ff7851f83abafa6 | |
parent | f7bd960140f0831c7ea047d12145e5b7e44ed4c8 (diff) |
[Buckinghamshire] Reduce flytipping road lookup to 5 metres
Anything smaller seems like it would result in a lot of false negatives.
-rw-r--r-- | perllib/FixMyStreet/Cobrand/Buckinghamshire.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perllib/FixMyStreet/Cobrand/Buckinghamshire.pm b/perllib/FixMyStreet/Cobrand/Buckinghamshire.pm index b3c8350cf..11b52174a 100644 --- a/perllib/FixMyStreet/Cobrand/Buckinghamshire.pm +++ b/perllib/FixMyStreet/Cobrand/Buckinghamshire.pm @@ -99,7 +99,7 @@ sub munge_sendreport_params { # value because we don't display the adopted highways layer on those # frontends. Instead we'll look up the closest asset from the WFS # service at the point we're sending the report by email. - my $site_code = $row->get_extra_field_value('site_code') || $self->lookup_site_code($row, 10); + my $site_code = $row->get_extra_field_value('site_code') || $self->lookup_site_code($row, 5); if ($site_code) { my $e = join('', 'crmbusinesssupport', '@', $self->admin_user_domain); push @{$hdrs->{To}}, [ $e, 'TfB' ]; |