Merge pull request #2793 from lonvia/increase-minimum-results

Fix minimum number of results that are searched for
This commit is contained in:
Sarah Hoffmann
2022-08-09 20:08:45 +02:00
committed by GitHub

View File

@@ -103,7 +103,7 @@ class Geocode
}
$this->iFinalLimit = $iLimit;
$this->iLimit = $iLimit + min($iLimit, 10);
$this->iLimit = $iLimit + max($iLimit, 10);
}
public function setFeatureType($sFeatureType)