Skip to content

Commit

Permalink
Audit: Add target file in path
Browse files Browse the repository at this point in the history
  • Loading branch information
sbrunner committed Jun 12, 2024
1 parent 7be3953 commit abe0550
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion github_app_geo_project/module/audit/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ async def snyk(
"<br>\n".join(
[
f'<a href="https://security.snyk.io/vuln/{vuln["id"]}">{vuln["title"]}</a>',
" > ".join(vuln["from"]),
" > ".join([row.get("displayTargetFile", "-"), *vuln["from"]]),
*[", ".join(identifiers) for identifiers in vuln.get("identifiers", {}).values()],
# *[f'<a href="{reference['url']}>{reference["title"]}</a>' for reference in vuln["references"]],
# "",
Expand Down

0 comments on commit abe0550

Please sign in to comment.