Ignore spaces when parsing facets (#846)

This commit is contained in:
Julian Vennen 2024-01-10 17:40:19 +01:00 committed by GitHub
parent 9d54c41a2b
commit 9c70c35669
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -152,6 +152,7 @@ fn parse_facet(facet: &String) -> Option<(String, String, String)> {
val.push_str(&iterator.collect::<String>());
return Some((key, operator, val));
}
' ' => continue,
_ => key.push(char),
}
}