]> git.openstreetmap.org Git - nominatim.git/commitdiff
increase limit when searching for street w/ house number
authorSarah Hoffmann <lonvia@denofr.de>
Sat, 20 Oct 2018 15:26:45 +0000 (17:26 +0200)
committerSarah Hoffmann <lonvia@denofr.de>
Sat, 20 Oct 2018 15:26:45 +0000 (17:26 +0200)
Increase the chance that the correct street is found.

lib/SearchDescription.php

index 35424b529244c9071a89d808a2419e3dba00f0ab..ec14e54600ee11f106d83b54ab6510b9b98be708 100644 (file)
@@ -701,7 +701,7 @@ class SearchDescription
         }
 
         if ($this->sHouseNumber || $this->sClass) {
-            $iLimit = 20;
+            $iLimit = 40;
         }
 
         $aResults = array();