logo

searx

My custom branche(s) on searx, a meta-search engine git clone https://hacktivis.me/git/searx.git
commit: bc12a76fbbfdb4769a254cda5e3cfdf262765107
parent 3b7b106684a1dc899823bcef533e5892f7a813da
Author: Thomas Pointhuber <thomas.pointhuber@gmx.at>
Date:   Mon,  3 Nov 2014 18:53:04 +0100

[fix] use address.city if possible

Diffstat:

Msearx/engines/openstreetmap.py4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/searx/engines/openstreetmap.py b/searx/engines/openstreetmap.py @@ -64,7 +64,9 @@ def response(resp): if address.get('name'): address.update({'house_number':address_raw.get('house_number'), 'road':address_raw.get('road'), - 'locality':address_raw.get('town', address_raw.get('village')), + 'locality':address_raw.get('city', + address_raw.get('town', + address_raw.get('village'))), 'postcode':address_raw.get('postcode'), 'country':address_raw.get('country'), 'country_code':address_raw.get('country_code')})