WIP: improve search #1
|
@ -253,11 +253,11 @@ fn torrent_search(
|
||||||
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(" ", "%"),
|
||||||
offset.to_string(),
|
offset.to_string(),
|
||||||
size.to_string(),
|
size.to_string(),
|
||||||
},
|
],
|
||||||
|row| {
|
|row| {
|
||||||
Ok(Torrent {
|
Ok(Torrent {
|
||||||
infohash: row.get(0)?,
|
infohash: row.get(0)?,
|
||||||
|
|
Loading…
Reference in New Issue