From ddfd7def358d82267a52d47d11f63359610c98f1 Mon Sep 17 00:00:00 2001 From: Tamo Date: Tue, 28 Sep 2021 18:10:45 +0200 Subject: [PATCH] add a TODO while waiting for the tests to be fixed --- meilisearch-http/src/routes/indexes/search.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meilisearch-http/src/routes/indexes/search.rs b/meilisearch-http/src/routes/indexes/search.rs index c7e987840..9cbdcf2c0 100644 --- a/meilisearch-http/src/routes/indexes/search.rs +++ b/meilisearch-http/src/routes/indexes/search.rs @@ -79,6 +79,8 @@ impl From for SearchQuery { } } +// TODO: TAMO: split on :asc, and :desc, instead of doing some weird things + /// Transform the sort query parameter into something that matches the post expected format. fn fix_sort_query_parameters(sort_query: &str) -> Vec { let mut sort_parameters = Vec::new();