WIP: improve search #1

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

View File

@ -251,7 +251,6 @@ fn torrent_search(
// `sort_key` and `sort_dir` are already sanitized and should not be escaped: // `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 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 mut stmt = conn.prepare(&stmt_str)?;
let torrent_iter = stmt.query_map( let torrent_iter = stmt.query_map(
params![ params![
query.replace(" ", "%"), query.replace(" ", "%"),