Skip to content

Commit

Permalink
Fix warning
Browse files Browse the repository at this point in the history
  • Loading branch information
RobinP122 committed Jun 27, 2024
1 parent af489f7 commit e5c1d68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ pub fn serialize_all_entries(data: HashMap<String, String>) -> HashMap<String, V
Ok(json_value) => {
output.insert(key, json_value);
}
Err(e) => {
Err(_e) => {
output.insert(key, json!(value));
}
}
Expand Down

0 comments on commit e5c1d68

Please sign in to comment.