tidy up indentation part 3

This commit is contained in:
Rob Watson 2020-07-03 12:46:40 +02:00
parent 59f292bc1e
commit fec8d09693
1 changed files with 1 additions and 2 deletions

View File

@ -251,7 +251,6 @@ fn torrent_search(
// `sort_key` and `sort_dir` are already sanitized and should not be escaped:
let stmt_str = format!("select * from torrents where name like '%' || ?1 || '%' order by {} {} limit ?2, ?3", sort_key, sort_dir);
let mut stmt = conn.prepare(&stmt_str)?;
let torrent_iter = stmt.query_map(
params![
query.replace(" ", "%"),
@ -269,7 +268,7 @@ fn torrent_search(
completed: row.get(6)?,
scraped_date: row.get(7)?,
})
},
},
)?;
let mut torrents = Vec::new();