Este site funciona melhor com JavaScript.
Página inicial
Explorar
Ajuda
Cadastrar
Acessar
OpenSource
/
dify
Observar
4
Favorito
0
Fork
0
Código
Issues
0
Pull requests
0
Versões
152
Wiki
Atividade
Ver código fonte
fix(Backend:http_executor): :wrench: prevent splitting JSON data as v… (
#4276
)
tags/0.6.8
Patryk Garstecki
1 ano atrás
pai
13f4ed6e0e
commit
2c1c660c6e
Nenhuma conta vinculada ao e-mail do autor do commit
1 arquivos alterados
com
1 adições
e
1 exclusões
Visão dividida
Mostrar estatísticas do Diff
1
1
api/core/workflow/nodes/http_request/http_executor.py
+ 1
- 1
api/core/workflow/nodes/http_request/http_executor.py
Ver arquivo
@@ -236,7 +236,7 @@ class HttpExecutor:
for kv in kv_paris:
if not kv.strip():
continue
kv = kv.split(':')
kv = kv.split(':'
, 1
)
if len(kv) == 2:
body[kv[0].strip()] = kv[1]
elif len(kv) == 1:
Escrever
Pré-visualização
Carregando…
Cancelar
Salvar