Browse Source

fix: json parse err when http node send request (#11001)

tags/0.12.0
litterGuy 11 months ago
parent
commit
ae3a2cb272
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      api/core/workflow/nodes/http_request/executor.py

+ 1
- 1
api/core/workflow/nodes/http_request/executor.py View File

@@ -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…
Cancel
Save