mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-08-12 16:59:04 +08:00
fix: improve content decoding in AppDslService (#12304)
Signed-off-by: -LAN- <laipz8200@outlook.com>
This commit is contained in:
parent
0e6317678f
commit
375aa38f5d
@ -104,7 +104,7 @@ class AppDslService:
|
||||
raise ValueError(f"Invalid import_mode: {import_mode}")
|
||||
|
||||
# Get YAML content
|
||||
content: bytes | str = b""
|
||||
content: str = ""
|
||||
if mode == ImportMode.YAML_URL:
|
||||
if not yaml_url:
|
||||
return Import(
|
||||
@ -124,7 +124,7 @@ class AppDslService:
|
||||
yaml_url = yaml_url.replace("/blob/", "/")
|
||||
response = ssrf_proxy.get(yaml_url.strip(), follow_redirects=True, timeout=(10, 10))
|
||||
response.raise_for_status()
|
||||
content = response.content
|
||||
content = response.content.decode()
|
||||
|
||||
if len(content) > max_size:
|
||||
return Import(
|
||||
|
Loading…
x
Reference in New Issue
Block a user