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 dbe74a2 commit b43f783Copy full SHA for b43f783
pkg/falcon/extractor.go
@@ -172,7 +172,9 @@ func GetMessages(config *config.Config, ctx context.Context) (results map[string
172
minExpertAIScore := 0
173
if newScore, err := getSeverityScore(config.Falcon.MinExprtAISeverity); err != nil {
174
return nil, errors.Wrap(err, "unknown minimum exprtai severity specified")
175
- } else { minExpertAIScore = newScore }
+ } else {
176
+ minExpertAIScore = newScore
177
+ }
178
179
for _, vuln := range queryResult.GetPayload().Resources {
180
0 commit comments