fixed condition
This commit is contained in:
parent
817446df41
commit
b1e1185765
|
@ -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");
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue