From 630d5e4b58f47ffb6afdf9366b7b18f2b9a45857 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Thu, 3 Jul 2025 07:52:55 +0000 Subject: [PATCH] api: Remove a debug line from the downloads handler Signed-off-by: Michael Tremer --- src/api/downloads.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/api/downloads.py b/src/api/downloads.py index f6f77043..f329e865 100644 --- a/src/api/downloads.py +++ b/src/api/downloads.py @@ -114,8 +114,6 @@ async def get( # file will be there. If not, the client will receive 404 from there. url = backend.path_to_url(path, mirrored=False) - print("URL", url) - return fastapi.responses.RedirectResponse(url, headers=headers) # Add everything to the app -- 2.47.2