diff --git a/searx/webapp.py b/searx/webapp.py index e9c5e917a..059283b16 100644 --- a/searx/webapp.py +++ b/searx/webapp.py @@ -266,6 +266,9 @@ def proxify(url): def image_proxify(url): + if settings.get('result_proxy'): + return proxify(url) + if url.startswith('//'): url = 'https:' + url