We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce4e0f7 commit d251a5fCopy full SHA for d251a5f
src/Microsoft.Sbom.Api/SBOMValidator.cs
@@ -107,7 +107,7 @@ public async Task<SBOMValidationResult> ValidateSbomAsync(
107
await recorder.FinalizeAndLogTelemetryAsync();
108
109
var errors = recorder.Errors.Select(error => error.ToEntityError()).ToList();
110
- return new SBOMValidationResult(errors.Any(), errors);
+ return new SBOMValidationResult(!errors.Any(), errors);
111
}
112
113
private InputConfiguration ValidateConfig(InputConfiguration config)
0 commit comments