We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 06b720c commit a4b1e3fCopy full SHA for a4b1e3f
app/controllers/tix_controller.py
@@ -73,4 +73,4 @@ async def download_tix(
73
zip_path = "vex_tix_sbom.zip"
74
with ZipFile(zip_path, "w") as myzip:
75
myzip.writestr(f"tix_{tix['sbom_name']}.json", dumps(tix["tix"], indent=2))
76
- return FileResponse(path=zip_path, filename="vex.zip", headers={'Access-Control-Expose-Headers': 'Content-Disposition'}, status_code=status.HTTP_200_OK)
+ return FileResponse(path=zip_path, filename="tix.zip", headers={'Access-Control-Expose-Headers': 'Content-Disposition'}, status_code=status.HTTP_200_OK)
0 commit comments