summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Heiser <markus.heiser@darmarit.de>2022-02-07 13:05:52 +0100
committerMarkus Heiser <markus.heiser@darmarit.de>2022-02-07 13:05:52 +0100
commit906a0a99cd018b3f33b731ad5ac416b509f3cac6 (patch)
tree763e9d2916b316784ee7ab3aea3e15c2fd915a70
parentae8e3f35438856b8cf6c4704b21ffb9cf62d6b7b (diff)
downloadsearxng-906a0a99cd018b3f33b731ad5ac416b509f3cac6.tar.gz
searxng-906a0a99cd018b3f33b731ad5ac416b509f3cac6.zip
[fix] openstreatmap: load thumbnail from uploads.wikimedia.org
Openstreatmap images are now loaded from uploads.wikimedia.org instead of commons.wikimedia.org to prevent redirects. With `image_proxy` enabled images from commons.wikimedia.org cant be loaded since they are redirected. We already discussed this issue [875] and @tiekoetter fixed this issue in PR [878]. Related-to: - [875] https://github.com/searxng/searxng/issues/875 - [878] https://github.com/searxng/searxng/pull/878 Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
-rw-r--r--searx/engines/openstreetmap.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/searx/engines/openstreetmap.py b/searx/engines/openstreetmap.py
index 946869834..c619ce98e 100644
--- a/searx/engines/openstreetmap.py
+++ b/searx/engines/openstreetmap.py
@@ -14,7 +14,7 @@ from flask_babel import gettext
from searx.data import OSM_KEYS_TAGS, CURRENCIES
from searx.utils import searx_useragent
from searx.external_urls import get_external_url
-from searx.engines.wikidata import send_wikidata_query, sparql_string_escape
+from searx.engines.wikidata import send_wikidata_query, sparql_string_escape, get_thumbnail
# about
about = {
@@ -168,7 +168,7 @@ def response(resp):
continue
url, osm, geojson = get_url_osm_geojson(result)
- img_src = get_img_src(result)
+ img_src = get_thumbnail(get_img_src(result))
links, link_keys = get_links(result, user_language)
data = get_data(result, user_language, link_keys)