Further improvements

This commit is contained in:
2026-02-22 15:32:45 +02:00
parent c5ef4406f6
commit ef31852fd8
6 changed files with 179 additions and 28 deletions

View File

@@ -95,7 +95,7 @@ async def download_binary(
raise HTTPException(status_code=404, detail="Binary not built yet for this melody")
melody = await service.get_built_melody(melody_id)
filename = f"{melody.name}.bsm"
filename = f"{melody.pid or melody.name}.bsm"
return FileResponse(
path=str(path),