Fixes to the Download Errors

This commit is contained in:
2026-02-22 14:16:06 +02:00
parent cfae55025d
commit bdddc304ee
3 changed files with 5 additions and 5 deletions

View File

@@ -20,7 +20,7 @@ def _ensure_storage_dir():
def _binary_url(melody_id: str) -> str:
"""Returns the API URL to download the binary for a given melody id."""
return f"/api/builder/melodies/{melody_id}/download"
return f"/builder/melodies/{melody_id}/download"
def _row_to_built_melody(row: dict) -> BuiltMelodyInDB: