mirror of
https://github.com/meilisearch/MeiliSearch
synced 2025-07-03 20:07:09 +02:00
Fixes #3912
This commit is contained in:
parent
74315b4ea8
commit
4310928803
1 changed files with 3 additions and 1 deletions
|
@ -104,8 +104,10 @@ impl<'ctx> SearchContext<'ctx> {
|
|||
}
|
||||
.into())
|
||||
}
|
||||
// The field is not searchable, but the searchableAttributes are set to * => ignore field
|
||||
(None, None) => continue,
|
||||
// The field is not searchable => User error
|
||||
_otherwise => {
|
||||
(_fid, Some(false)) => {
|
||||
let mut valid_fields: BTreeSet<_> =
|
||||
fids_map.names().map(String::from).collect();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue