Skip to content

Commit

Permalink
fix beta path
Browse files Browse the repository at this point in the history
  • Loading branch information
v00g100skr committed Dec 11, 2024
1 parent 2c882b7 commit 02c52b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deploy/update_server/update_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ async def update_beta(request):
reverse=True,
)
filenames = [filename for filename in filenames if not filename.startswith("4.")]
return FileResponse(f"{shared_path}/{filenames[0]}")
return FileResponse(f"{shared_beta_path}/{filenames[0]}")
return FileResponse(f'{shared_beta_path}/{request.path_params["filename"]}.bin')


Expand Down

0 comments on commit 02c52b5

Please sign in to comment.