Remove exception

This commit is contained in:
2022-04-19 17:10:52 +02:00
parent 2702703e13
commit 64afda5662

View File

@ -46,23 +46,18 @@ async def upload_file(file: UploadFile = File(...)) -> Dict[str, str]:
the .html if it was a video. the .html if it was a video.
""" """
domain_url = "" domain_url = ""
try: if file.content_type.startswith("video/"):
if file.content_type.startswith("video/"): return await do_things(file)
return await do_things(file)
# Replace spaces with dots in filename. # Replace spaces with dots in filename.
filename = file.filename.replace(" ", ".") filename = file.filename.replace(" ", ".")
with open(f"{settings.upload_folder}/{filename}", "wb+") as f: with open(f"{settings.upload_folder}/{filename}", "wb+") as f:
f.write(file.file.read()) f.write(file.file.read())
domain_url = f"{settings.domain}/{filename}" domain_url = f"{settings.domain}/{filename}"
send_webhook(f"{domain_url} was uploaded.") send_webhook(f"{domain_url} was uploaded.")
return {"html_url": domain_url} return {"html_url": domain_url}
except Exception as exception:
send_webhook(f"{domain_url}:\n{exception}")
return {"error": f"Something went wrong: {exception}"}
@app.get("/", response_class=HTMLResponse) @app.get("/", response_class=HTMLResponse)