mirror of
https://github.com/meilisearch/MeiliSearch
synced 2025-07-04 12:27:13 +02:00
Fix typo initial candiddates computation
This commit is contained in:
parent
1f1beae077
commit
80d34a4169
1 changed files with 6 additions and 1 deletions
|
@ -141,7 +141,12 @@ impl<'t> Criterion for Typo<'t> {
|
|||
filtered_candidates,
|
||||
initial_candidates,
|
||||
}) => {
|
||||
self.initial_candidates = initial_candidates;
|
||||
self.initial_candidates =
|
||||
match (self.initial_candidates.take(), initial_candidates) {
|
||||
(Some(self_bc), Some(parent_bc)) => Some(self_bc | parent_bc),
|
||||
(self_bc, parent_bc) => self_bc.or(parent_bc),
|
||||
};
|
||||
|
||||
let candidates = match candidates.or(filtered_candidates) {
|
||||
Some(candidates) => {
|
||||
Candidates::Allowed(candidates - params.excluded_candidates)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue