WIP: improve search #1

Closed
rob wants to merge 26 commits from improve-search into master
1 changed files with 4 additions and 5 deletions
Showing only changes of commit 0048290868 - Show all commits

View File

@ -252,14 +252,13 @@ fn torrent_search(
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!{
let torrent_iter = stmt.query_map(
params!{
query.replace(" ", "%"),
offset.to_string(),
size.to_string(),
},
|row| {
let size: isize = row.get(2)?;
println!("got size {:?}", size);
Ok(Torrent {
infohash: row.get(0)?,
name: row.get(1)?,