mirror of
https://github.com/searxng/searxng.git
synced 2025-12-23 04:00:02 +00:00
Merge pull request #801 from dalf/fix-checker
[fix] checker: fix image fetch
This commit is contained in:
@@ -74,7 +74,7 @@ def _download_and_check_if_image(image_url: str) -> bool:
|
|||||||
try:
|
try:
|
||||||
# use "image_proxy" (avoid HTTP/2)
|
# use "image_proxy" (avoid HTTP/2)
|
||||||
network.set_context_network_name('image_proxy')
|
network.set_context_network_name('image_proxy')
|
||||||
stream = network.stream(
|
r, stream = network.stream(
|
||||||
'GET',
|
'GET',
|
||||||
image_url,
|
image_url,
|
||||||
timeout=10.0,
|
timeout=10.0,
|
||||||
@@ -91,7 +91,6 @@ def _download_and_check_if_image(image_url: str) -> bool:
|
|||||||
'Cache-Control': 'max-age=0',
|
'Cache-Control': 'max-age=0',
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
r = next(stream)
|
|
||||||
r.close()
|
r.close()
|
||||||
if r.status_code == 200:
|
if r.status_code == 200:
|
||||||
is_image = r.headers.get('content-type', '').startswith('image/')
|
is_image = r.headers.get('content-type', '').startswith('image/')
|
||||||
|
|||||||
Reference in New Issue
Block a user