1
0
mirror of https://github.com/searxng/searxng.git synced 2024-10-01 09:00:15 +02:00

[enh] use morty proxy for image proxification too if it is configured

This commit is contained in:
Adam Tauber 2016-10-29 23:12:30 +02:00
parent a67a4bf2c0
commit 1b9045ed89

View File

@ -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