summaryrefslogtreecommitdiff
path: root/searx/webapp.py
diff options
context:
space:
mode:
authorNoémi Ványi <kvch@users.noreply.github.com>2019-01-29 11:03:35 +0100
committerGitHub <noreply@github.com>2019-01-29 11:03:35 +0100
commit83342a2878d4e677c98736c424eec85ff3a9cb4e (patch)
tree3b33d3626dd94418f16a3cd3bc0627ae1a4fff91 /searx/webapp.py
parent36790168a14a0de44697dc38e6a71b16433e2a12 (diff)
parent0ac117770d43b61b0e7f05ea5df2fe9500dd1f2b (diff)
Merge branch 'master' into fix-engine-suspend-time
Diffstat (limited to 'searx/webapp.py')
-rw-r--r--searx/webapp.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/searx/webapp.py b/searx/webapp.py
index 977e7e675..727259774 100644
--- a/searx/webapp.py
+++ b/searx/webapp.py
@@ -295,6 +295,9 @@ def image_proxify(url):
if not request.preferences.get_value('image_proxy'):
return url
+ if url.startswith('data:image/jpeg;base64,'):
+ return url
+
if settings.get('result_proxy'):
return proxify(url)