mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-08-12 17:49:01 +08:00
fix: json parse err when http node send request (#11001)
This commit is contained in:
parent
6c8e208ef3
commit
ae3a2cb272
@ -108,7 +108,7 @@ class Executor:
|
||||
self.content = self.variable_pool.convert_template(data[0].value).text
|
||||
case "json":
|
||||
json_string = self.variable_pool.convert_template(data[0].value).text
|
||||
json_object = json.loads(json_string)
|
||||
json_object = json.loads(json_string, strict=False)
|
||||
self.json = json_object
|
||||
# self.json = self._parse_object_contains_variables(json_object)
|
||||
case "binary":
|
||||
|
Loading…
x
Reference in New Issue
Block a user