show other packs data again

This commit is contained in:
Julian Krings
2025-09-20 23:31:33 +02:00
parent 0524adb0df
commit 27b2fd0823

View File

@@ -28,7 +28,10 @@ public abstract class RegistrantHandler<T extends IrisRegistrant> implements Dec
Set<String> known = new HashSet<>();
IrisData data = data();
if (data != null) {
return data.getLoader(type).loadAll(data.getLoader(type).getPossibleKeys()).qadd(null);
for (T j : data.getLoader(type).loadAll(data.getLoader(type).getPossibleKeys())) {
known.add(j.getLoadKey());
p.add(j);
}
}
//noinspection ConstantConditions