Fix cat delete fallback

This commit is contained in:
crschnick
2026-04-04 00:44:22 +00:00
parent d1e8c141cf
commit 1cce2fd259
@@ -1060,6 +1060,11 @@ public abstract class DataStorage {
return;
}
// There is no proper fallback for these cases
if (cat.getParentCategory().equals(ALL_SCRIPTS_CATEGORY_UUID) || cat.getParentCategory().equals(ALL_IDENTITIES_CATEGORY_UUID)) {
deleteEntries = true;
}
var toDelete = new ArrayList<DataStoreCategory>();
if (deleteChildren) {
for (DataStoreCategory other : getStoreCategories()) {