Fix text return for curl when deleting file
This commit is contained in:
parent
2c58245f4b
commit
ec3858ac6c
1 changed files with 1 additions and 1 deletions
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):
|
||||
remove(file_path)
|
||||
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:
|
||||
return RedirectResponse(request.url_for('files'))
|
||||
if re.search("^curl/.*", str(user_agent)):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue