Skip to content

Commit

Permalink
Fixes issue with OSV provider API call
Browse files Browse the repository at this point in the history
  • Loading branch information
djschleen committed Oct 24, 2023
1 parent d44063f commit d2b3934
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion providers/osv/osv.go
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ func (Provider) Scan(purls []string, credentials *models.Credentials) (packages
Purl: pp,
}
for _, v := range response.Vulns {
log.Printf("*** %s...", v.Summary)
log.Printf("*** %s - %s...", strings.Join(v.Aliases, ","), v.Summary)
vuln := models.Vulnerability{
ID: strings.Join(v.Aliases, ","),
Title: v.Summary,
Expand Down

0 comments on commit d2b3934

Please sign in to comment.