We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53916a8 commit 371dbd7Copy full SHA for 371dbd7
lib/dsc-lib/src/functions/json.rs
@@ -31,7 +31,6 @@ impl Function for Json {
31
return Err(DscError::Parser(t!("functions.json.notString").to_string()));
32
};
33
34
- // Parse the JSON string
35
match serde_json::from_str(json_str) {
36
Ok(value) => Ok(value),
37
Err(e) => Err(DscError::Parser(format!("{}: {}", t!("functions.json.invalidJson"), e))),
0 commit comments