mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-08-13 23:16:04 +08:00
fix: http node request detect text/xml as file (#15174)
This commit is contained in:
parent
f588ccff72
commit
99dc8c7871
@ -120,6 +120,10 @@ class Response:
|
|||||||
if disp_type == "attachment" or filename is not None:
|
if disp_type == "attachment" or filename is not None:
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
# For 'text/' types, only 'csv' should be downloaded as file
|
||||||
|
if content_type.startswith("text/") and "csv" not in content_type:
|
||||||
|
return False
|
||||||
|
|
||||||
# For application types, try to detect if it's a text-based format
|
# For application types, try to detect if it's a text-based format
|
||||||
if content_type.startswith("application/"):
|
if content_type.startswith("application/"):
|
||||||
# Common text-based application types
|
# Common text-based application types
|
||||||
|
Loading…
x
Reference in New Issue
Block a user