-
Notifications
You must be signed in to change notification settings - Fork 693
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 NuGetAudit severity level mapping (#5313) #5315
Conversation
@@ -368,31 +369,31 @@ private int ParseAuditLevel() | |||
|
|||
if (auditLevel == null) | |||
{ | |||
return 1; | |||
return 0; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@@ -368,31 +369,31 @@ private int ParseAuditLevel() | |||
|
|||
if (auditLevel == null) | |||
{ | |||
return 1; | |||
return 0; | |||
} | |||
|
|||
if (string.Equals("low", auditLevel, StringComparison.OrdinalIgnoreCase)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This PR has been automatically marked as stale because it has no activity for 7 days. It will be closed if no further activity occurs within another 7 days of this comment. If it is closed, you may reopen it anytime when you're ready again, as long as you don't delete the branch. |
Bug
Fixes: NuGet/Home#12743
Regression? No, no feature
Description
Cherry picks #5313 onto
release-6.7.x
branch.PR Checklist
PR has a meaningful title
PR has a linked issue.
Described changes
Tests
Documentation