We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c8e208 commit ae3a2cbCopy full SHA for ae3a2cb
api/core/workflow/nodes/http_request/executor.py
@@ -108,7 +108,7 @@ def _init_body(self):
108
self.content = self.variable_pool.convert_template(data[0].value).text
109
case "json":
110
json_string = self.variable_pool.convert_template(data[0].value).text
111
- json_object = json.loads(json_string)
+ json_object = json.loads(json_string, strict=False)
112
self.json = json_object
113
# self.json = self._parse_object_contains_variables(json_object)
114
case "binary":
0 commit comments