9
0
mirror of https://github.com/VolmitSoftware/Iris.git synced 2025-12-26 10:39:07 +00:00

If special then unknown default should still be skipped

This commit is contained in:
Sjoerd van de Goor
2023-03-03 23:57:37 +01:00
parent 4e138cad9f
commit 540ab8f0d2
2 changed files with 2 additions and 2 deletions

View File

@@ -420,7 +420,7 @@ public class IrisEntity extends IrisRegistrant {
return null;
}
if (type.equals(EntityType.UNKNOWN)) {
if (type.equals(EntityType.UNKNOWN) && !isSpecialType()) {
return null;
}