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.
2 parents de15cc2 + 62eb1a0 commit 86a7d9aCopy full SHA for 86a7d9a
dojo/engagement/views.py
@@ -420,7 +420,7 @@ def import_scan_results(request, eid):
420
421
item.severity = sev
422
423
- if Finding.SEVERITIES[sev] > Finding.SEVERITIES[min_sev]:
+ if Finding.SEVERITIES[sev] >= Finding.SEVERITIES[min_sev]:
424
continue
425
426
item.test = t
dojo/test/views.py
@@ -467,7 +467,7 @@ def re_import_scan_results(request, tid):
467
if sev == 'Information' or sev == 'Informational':
468
sev = 'Info'
469
470
471
472
473
if scan_type == 'Veracode Scan' or scan_type == 'Arachni Scan':
0 commit comments