We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2526743 commit 63d3d53Copy full SHA for 63d3d53
1 file changed
dojo/api_v2/serializers.py
@@ -1886,6 +1886,8 @@ def create(self, validated_data):
1886
new_finding.reviewers.set(reviewers)
1887
if parsed_vulnerability_ids:
1888
save_vulnerability_ids(new_finding, parsed_vulnerability_ids)
1889
+ # can we avoid this extra save? the cve has already been set above in validated_data. but there are no tests for this
1890
+ new_finding.save()
1891
1892
if push_to_jira:
1893
jira_helper.push_to_jira(new_finding)
0 commit comments