mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-11-27 07:14:26 +01:00
Do not try to parse empty faceted strings
This commit is contained in:
parent
23f9a22edc
commit
f9cc12ae0f
@ -586,9 +586,11 @@ fn parse_facet_value(ftype: FacetType, value: &Value) -> anyhow::Result<SmallVec
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
Value::String(string) => {
|
Value::String(string) => {
|
||||||
|
let string = string.trim();
|
||||||
|
if string.is_empty() { return Ok(()) }
|
||||||
match ftype {
|
match ftype {
|
||||||
FacetType::String => {
|
FacetType::String => {
|
||||||
let string = SmallString32::from(string.as_str());
|
let string = SmallString32::from(string);
|
||||||
Ok(output.push(String(string)))
|
Ok(output.push(String(string)))
|
||||||
},
|
},
|
||||||
FacetType::Float => match string.parse() {
|
FacetType::Float => match string.parse() {
|
||||||
|
Loading…
Reference in New Issue
Block a user