mirror of
https://github.com/meilisearch/MeiliSearch
synced 2025-07-03 11:57:07 +02:00
Fix the binaries that use the new optional filters
This commit is contained in:
parent
25faef67d0
commit
1c6c89f345
2 changed files with 4 additions and 3 deletions
|
@ -738,7 +738,7 @@ async fn main() -> anyhow::Result<()> {
|
|||
|
||||
let filters = match query.filters.as_ref() {
|
||||
Some(condition) if !condition.trim().is_empty() => {
|
||||
Some(MilliFilter::from_str(condition).unwrap())
|
||||
MilliFilter::from_str(condition).unwrap()
|
||||
}
|
||||
_otherwise => None,
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue