fixed condition

This commit is contained in:
Konstantinos Spyrou 2023-01-17 13:49:00 +02:00
parent 817446df41
commit b1e1185765
1 changed files with 1 additions and 1 deletions

View File

@ -728,7 +728,7 @@ public class RepositoryServiceImpl implements RepositoryService {
// TODO: double check me
logger.warn("Compatibility level: {}", iFace.getCompatibility());
if (iFace.getCompatibility() != null && iFace.getCompatibility().equals("")) {
if (iFace.getCompatibility() == null || iFace.getCompatibility().equals("")) {
iFace.setCompatibility("UNKNOWN");
}