Fixed error with mass creation, when elements on different level had the same name

Fixes issue #1104
This commit is contained in:
Jan Böhmer 2025-12-07 21:40:57 +01:00
parent b457298152
commit 9565a9d548
2 changed files with 2 additions and 2 deletions

View file

@ -167,7 +167,7 @@ class EntityImporter
}
//Only return objects once
return array_values(array_unique($valid_entities));
return array_values(array_unique($valid_entities, SORT_REGULAR));
}
/**