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 6b1b5e5 commit fb73baaCopy full SHA for fb73baa
dojo/importers/default_reimporter.py
@@ -537,6 +537,9 @@ def process_matched_active_finding(
537
# First check that the existing finding is definitely not mitigated
538
if not (existing_finding.mitigated and existing_finding.is_mitigated):
539
logger.debug("Reimported item matches a finding that is currently open.")
540
+ if unsaved_finding.fix_available:
541
+ logger.debug("Reimported finding has a fix available now.")
542
+ existing_finding.fix_available = True
543
if unsaved_finding.is_mitigated:
544
logger.debug("Reimported mitigated item matches a finding that is currently open, closing.")
545
# TODO: Implement a date comparison for opened defectdojo findings before closing them by reimporting,
0 commit comments