This commit is contained in:
crschnick 2024-06-30 15:29:43 +00:00
parent fe81900429
commit ce5b943380

View file

@ -346,7 +346,7 @@ public abstract class DataStorage {
e.incrementBusyCounter();
List<? extends DataStoreEntryRef<? extends FixedChildStore>> newChildren;
try {
newChildren = ((FixedHierarchyStore) (e.getStore())).listChildren(e);
newChildren = ((FixedHierarchyStore) (e.getStore())).listChildren(e).stream().filter(dataStoreEntryRef -> dataStoreEntryRef != null && dataStoreEntryRef.get() != null).toList();
} catch (Exception ex) {
ErrorEvent.fromThrowable(ex).handle();
return false;