mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-08-14 05:36:02 +08:00
Fix : Add a process to fetch the mime type from the file name for signed url in remote_url #10872 version2 (#10908)
This commit is contained in:
parent
b42b333a72
commit
af53e2b6b0
@ -166,10 +166,9 @@ def _build_from_remote_url(
|
||||
|
||||
|
||||
def _get_remote_file_info(url: str):
|
||||
mime_type = mimetypes.guess_type(url)[0] or ""
|
||||
file_size = -1
|
||||
filename = url.split("/")[-1].split("?")[0] or "unknown_file"
|
||||
mime_type = mime_type or mimetypes.guess_type(filename)[0]
|
||||
mime_type = mimetypes.guess_type(filename)[0] or ""
|
||||
|
||||
resp = ssrf_proxy.head(url, follow_redirects=True)
|
||||
if resp.status_code == httpx.codes.OK:
|
||||
|
Loading…
x
Reference in New Issue
Block a user