From 8f1e6a892b4f032817785f9126ccbf9489f5f907 Mon Sep 17 00:00:00 2001 From: Sarah Hoffmann Date: Thu, 4 Nov 2021 11:16:05 +0100 Subject: [PATCH] increase number of search descriptions tried --- lib-php/Geocode.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib-php/Geocode.php b/lib-php/Geocode.php index 43d10368..0d1fab89 100644 --- a/lib-php/Geocode.php +++ b/lib-php/Geocode.php @@ -688,7 +688,7 @@ class Geocode } } - if ($iQueryLoop > 20) { + if ($iQueryLoop > 30) { break; } } @@ -765,7 +765,7 @@ class Geocode $aResults = $tempIDs; } - if (!empty($aResults) || $iGroupLoop > 4 || $iQueryLoop > 30) { + if (!empty($aResults) || $iGroupLoop > 6 || $iQueryLoop > 40) { break; } } -- 2.39.5