Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix update bugs #53

Merged
merged 4 commits into from
Apr 22, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix typo
  • Loading branch information
taechae committed Apr 22, 2023
commit b67efea6ac088b8b920351d0d0826a3a36e7271f
4 changes: 2 additions & 2 deletions pkg/vul/convert/snyk/snyk.go
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@ func convertNote(s *utils.Source, v *gabs.Container) *g.Note {

// create note
n := g.Note{
Name: fmt.Sprintf("%s-%s", "aactl", cve),
ShortDescription: noteID,
Name: noteID,
ShortDescription: cve,
LongDescription: utils.ToString(v.Search("CVSSv3").Data()),
RelatedUrl: []*g.RelatedUrl{
{
Expand Down