From 918381e59731a034d69c51df9f87c09f7dbe2c97 Mon Sep 17 00:00:00 2001 From: Kanishk Pachauri Date: Mon, 11 Dec 2023 03:19:49 +0530 Subject: [PATCH] fix: Redirect Link --- src/paste/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/paste/main.py b/src/paste/main.py index 37ba8c7..a04b5ef 100644 --- a/src/paste/main.py +++ b/src/paste/main.py @@ -84,4 +84,4 @@ def web_post(content: str = Form(...)): print(e) raise HTTPException(detail="There was an error uploading the file", status_code=status.HTTP_403_FORBIDDEN) - return RedirectResponse(f"http://localhost:8000/{uuid}/", status_code=status.HTTP_303_SEE_OTHER) \ No newline at end of file + return RedirectResponse(f"http://paste.fosscu.org/{uuid}/", status_code=status.HTTP_303_SEE_OTHER)