fix regression in default setting for details linkedplaces

This commit is contained in:
Sarah Hoffmann
2023-08-13 15:30:04 +02:00
parent 746dd057b9
commit bcf8433ba8
2 changed files with 2 additions and 2 deletions

View File

@@ -302,7 +302,7 @@ async def details_endpoint(api: napi.NominatimAPIAsync, params: ASGIAdaptor) ->
result = await api.details(place,
address_details=params.get_bool('addressdetails', False),
linked_places=params.get_bool('linkedplaces', False),
linked_places=params.get_bool('linkedplaces', True),
parented_places=params.get_bool('hierarchy', False),
keywords=params.get_bool('keywords', False),
geometry_output = napi.GeometryFormat.GEOJSON