aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perllib/Page.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/perllib/Page.pm b/perllib/Page.pm
index 49f20826f..df914dd3b 100644
--- a/perllib/Page.pm
+++ b/perllib/Page.pm
@@ -6,7 +6,7 @@
# Copyright (c) 2006 UK Citizens Online Democracy. All rights reserved.
# Email: matthew@mysociety.org; WWW: http://www.mysociety.org/
#
-# $Id: Page.pm,v 1.68 2007-10-19 19:20:31 matthew Exp $
+# $Id: Page.pm,v 1.69 2007-12-15 18:07:28 matthew Exp $
#
package Page;
@@ -524,7 +524,7 @@ sub geocode_string {
$error = 'Sorry, we could not understand that location.' unless $error;
} else {
my ($accuracy) = $js =~ /"Accuracy": (\d)/;
- if ($accuracy < 5) {
+ if ($accuracy < 4) {
$error = 'Sorry, that location appears to be too general; please be more specific.';
} else {
$js =~ /"coordinates":\[(.*?),(.*?),/;