mirror of
https://github.com/meilisearch/MeiliSearch
synced 2025-07-04 04:17:10 +02:00
Put only_additional_fields to None if the difference gives an empty result.
This commit is contained in:
parent
261e92d7e6
commit
0a4118329e
1 changed files with 1 additions and 1 deletions
|
@ -1127,7 +1127,7 @@ impl InnerIndexSettingsDiff {
|
|||
let new: HashSet<_> = new.iter().cloned().collect();
|
||||
if old.difference(&new).next().is_none() {
|
||||
// if no field has been removed return only the additional ones
|
||||
Some(&new - &old)
|
||||
Some(&new - &old).filter(|x| !x.is_empty())
|
||||
} else {
|
||||
None
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue