|
@@ -295,6 +295,9 @@ def image_proxify(url):
|
|
if not request.preferences.get_value('image_proxy'):
|
|
if not request.preferences.get_value('image_proxy'):
|
|
return url
|
|
return url
|
|
|
|
|
|
|
|
+ if url.startswith('data:image/jpeg;base64,'):
|
|
|
|
+ return url
|
|
|
|
+
|
|
if settings.get('result_proxy'):
|
|
if settings.get('result_proxy'):
|
|
return proxify(url)
|
|
return proxify(url)
|
|
|
|
|