mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-11-30 00:34:26 +01:00
Set disabled_words to default when Index::exact_words returns None
This commit is contained in:
parent
173eea06e1
commit
f5306eb5b0
@ -175,12 +175,10 @@ impl Index {
|
|||||||
two_typos: Setting::Set(self.min_word_len_two_typos(txn)?),
|
two_typos: Setting::Set(self.min_word_len_two_typos(txn)?),
|
||||||
};
|
};
|
||||||
|
|
||||||
let disabled_words = self
|
let disabled_words = match self.exact_words(txn)? {
|
||||||
.exact_words(txn)?
|
Some(fst) => fst.into_stream().into_strs()?.into_iter().collect(),
|
||||||
.into_stream()
|
None => BTreeSet::new(),
|
||||||
.into_strs()?
|
};
|
||||||
.into_iter()
|
|
||||||
.collect();
|
|
||||||
|
|
||||||
let disabled_attributes = self
|
let disabled_attributes = self
|
||||||
.exact_attributes(txn)?
|
.exact_attributes(txn)?
|
||||||
|
Loading…
Reference in New Issue
Block a user