Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
jihuayu committed Feb 14, 2024
1 parent b879e19 commit 1d5b14d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/services/sqlite/backend.rs
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ impl kv::Adapter for Adapter {
);
let mut statement = conn.prepare(&query).map_err(parse_rusqlite_error)?;
let like_param = format!("{}%", path);
let result = statement.query(params![like_param,path]);
let result = statement.query(params![like_param, path]);

match result {
Ok(mut rows) => {
Expand Down

0 comments on commit 1d5b14d

Please sign in to comment.