Introduced an OB validation error while adding CLR. Fixed a missing 'else if'

This commit is contained in:
Miles Lyon 2022-08-09 14:49:54 -04:00
parent 2c3f639f62
commit 0545dbf9e3

View File

@ -45,7 +45,7 @@ public class TypePropertyProbe extends Probe<JsonNode> {
ctx);
}
}
if(expected == Credential.Type.ClrCredential){
else if(expected == Credential.Type.ClrCredential){
if(!values.contains("ClrCredential")) {
return fatal(
"The type property does not contain the entry 'ClrCredential'",