We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7614907 commit f3c8f0eCopy full SHA for f3c8f0e
dojo/importers/default_reimporter.py
@@ -538,6 +538,9 @@ def process_matched_active_finding(
538
# First check that the existing finding is definitely not mitigated
539
if not (existing_finding.mitigated and existing_finding.is_mitigated):
540
logger.debug("Reimported item matches a finding that is currently open.")
541
+ if unsaved_finding.fix_available:
542
+ logger.debug("Reimported finding has a fix available now.")
543
+ existing_finding.fix_available = True
544
if unsaved_finding.is_mitigated:
545
logger.debug("Reimported mitigated item matches a finding that is currently open, closing.")
546
# TODO: Implement a date comparison for opened defectdojo findings before closing them by reimporting,
0 commit comments