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

This commit is contained in:
litterGuy 2024-11-24 14:19:48 +08:00 committed by GitHub
parent 6c8e208ef3
commit ae3a2cb272
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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":