mirror of https://github.com/langgenius/dify.git
fix: solving http-request-tool bugs in workflow (#6685)
This commit is contained in:
parent
700d37be8d
commit
ac60182c91
|
|
@ -337,7 +337,7 @@ class HttpExecutor:
|
|||
if variable is None:
|
||||
raise ValueError(f'Variable {variable_selector.variable} not found')
|
||||
if escape_quotes and isinstance(variable, str):
|
||||
value = variable.replace('"', '\\"')
|
||||
value = variable.replace('"', '\\"').replace('\n', '\\n')
|
||||
else:
|
||||
value = variable
|
||||
variable_value_mapping[variable_selector.variable] = value
|
||||
|
|
|
|||
Loading…
Reference in New Issue