Skip to content

Commit

Permalink
Added fix for sting values
Browse files Browse the repository at this point in the history
  • Loading branch information
tkmcmaster committed Sep 22, 2023
1 parent ac62a5d commit f56530d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lib/config/src/configv1/convert_helper.rs
Original file line number Diff line number Diff line change
Expand Up @@ -415,6 +415,7 @@ fn map_query(
log::info!("Object query: {select_temp}");
Query::<False>::complex_json(format!("{select_temp}").as_str(), for_each, where_clause)
},
json::Value::String(s) => Query::simple(s.to_string(), for_each, where_clause),
_ => Query::simple(format!("{select_temp}"), for_each, where_clause),
};
let query = match query {
Expand Down

0 comments on commit f56530d

Please sign in to comment.