Skip to content

Commit 004b2e7

Browse files
committed
Fix missed autofmt.
1 parent 25caa46 commit 004b2e7

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/handlers/search.rs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,11 @@ pub async fn search_admin(
6161
}
6262

6363
/// Perform search. Reads offset/limit and max_relations/max_content_items from query.
64-
pub async fn do_search(ctx: Arc<Ctx>, mut query: SearchQuery, is_admin: bool) -> Result<SearchResults> {
64+
pub async fn do_search(
65+
ctx: Arc<Ctx>,
66+
mut query: SearchQuery,
67+
is_admin: bool,
68+
) -> Result<SearchResults> {
6569
// Clean and normalize the query string.
6670
query.query = clean_query(&query.query);
6771

0 commit comments

Comments
 (0)