fix: http node request detect text/xml as file (#15174)

pull/14262/head
非法操作 1 year ago committed by Bharat Ramanathan
parent 28eb8d76fc
commit b99f1f13ba

@ -120,6 +120,10 @@ class Response:
if disp_type == "attachment" or filename is not None:
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
if content_type.startswith("application/"):
# Common text-based application types

Loading…
Cancel
Save