mirror of
https://github.com/langgenius/dify.git
synced 2026-05-04 17:38:04 +08:00
fix convert bug
This commit is contained in:
@ -378,6 +378,9 @@ class HttpExecutor:
|
||||
target_value_type=ValueType.STRING
|
||||
)
|
||||
|
||||
if value is None:
|
||||
raise ValueError(f'Variable {variable_selector.variable} not found')
|
||||
|
||||
if escape_quotes:
|
||||
value = value.replace('"', '\\"')
|
||||
|
||||
|
||||
Reference in New Issue
Block a user