This commit is contained in:
Dominique Eifländer 2021-10-19 15:17:01 +02:00
parent 2b950740a5
commit 629057bd46

View File

@ -151,7 +151,7 @@ public class EntitySearchUtils {
if(existing.getType().equals(found.getType())){
existing.getEngines().addAll(found.getEngines());
} else if (dictionary.getDictionaryRank(existing.getType()) <= dictionary.getDictionaryRank(found.getType())){
found.getEngines().addAll(existing.getEngines());
// found.getEngines().addAll(existing.getEngines());
entities.remove(found);
entities.add(found);
}