summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--searx/webapp.py3
1 files changed, 3 insertions, 0 deletions
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