forked from zaclys/searxng
Merge pull request #1488 from Venca24/devel_image_proxy
[FIX] image_proxify
This commit is contained in:
commit
c4f165477e
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in New Issue