forked from crony/UpFast
Fix text return for curl when deleting file
This commit is contained in:
parent
2c58245f4b
commit
ec3858ac6c
2
main.py
2
main.py
@ -104,7 +104,7 @@ async def delete(request: Request, file: str, user_agent: Annotated[Union[str, N
|
|||||||
if exists(file_path):
|
if exists(file_path):
|
||||||
remove(file_path)
|
remove(file_path)
|
||||||
if re.search("^curl/.*", str(user_agent)):
|
if re.search("^curl/.*", str(user_agent)):
|
||||||
return PlainTextResponse(f"file {file} doesn't exist on the server\n")
|
return PlainTextResponse(f"file {file} deleted from the server\n")
|
||||||
else:
|
else:
|
||||||
return RedirectResponse(request.url_for('files'))
|
return RedirectResponse(request.url_for('files'))
|
||||||
if re.search("^curl/.*", str(user_agent)):
|
if re.search("^curl/.*", str(user_agent)):
|
||||||
|
Loading…
Reference in New Issue
Block a user