Fix the binaries that use the new optional filters

This commit is contained in:
Clément Renault 2021-12-09 11:50:12 +01:00
parent 25faef67d0
commit 1c6c89f345
No known key found for this signature in database
GPG key ID: 92ADA4E935E71FA4
2 changed files with 4 additions and 3 deletions

View file

@ -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,
};