allow access to jsonfields in script vars

This commit is contained in:
wh1te909 2024-02-23 02:48:32 +00:00
parent e84b897991
commit f64efc63f8
1 changed files with 3 additions and 0 deletions

View File

@ -407,6 +407,9 @@ def replace_arg_db_values(
elif isinstance(value, int):
return str(value)
elif isinstance(value, dict):
return json.dumps(value)
def format_shell_array(value: list[str]) -> str:
temp_string = ""