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 726e023 commit 62eb1a0Copy full SHA for 62eb1a0
dojo/engagement/views.py
@@ -426,7 +426,7 @@ def import_scan_results(request, eid):
426
427
item.severity = sev
428
429
- if Finding.SEVERITIES[sev] > Finding.SEVERITIES[min_sev]:
+ if Finding.SEVERITIES[sev] >= Finding.SEVERITIES[min_sev]:
430
continue
431
432
item.test = t
dojo/test/views.py
@@ -473,7 +473,7 @@ def re_import_scan_results(request, tid):
473
if sev == 'Information' or sev == 'Informational':
474
sev = 'Info'
475
476
477
478
479
if scan_type == 'Veracode Scan' or scan_type == 'Arachni Scan':
0 commit comments