fix query time logging for structured queries

This commit is contained in:
Sarah Hoffmann
2025-09-11 10:54:02 +02:00
parent bf49f6a46f
commit 670cf98f93
2 changed files with 6 additions and 6 deletions

View File

@@ -109,7 +109,7 @@ class ForwardGeocoder:
if self.timeout.is_elapsed():
break
qs['search_rounds'] = i
qs['search_rounds'] = i + 1
return SearchResults(results.values())
def pre_filter_results(self, results: SearchResults) -> SearchResults: