remotes/1693045480750635534/spooky-22
fireworks88 2021-09-05 21:09:58 +02:00
parent fbab4ff6da
commit b5985ef4c0
1 changed files with 15 additions and 1 deletions

View File

@ -852,7 +852,21 @@ def submit_post(v):
if file.content_type.startswith('image/'):
new_post.url = upload_ibb(file)
else:
new_post.url = upload_video(file)
try:
new_post.url = upload_video(file)
except UploadException as e:
if request.headers.get("Authorization"):
return {
"error": str(e),
}, 400
else:
return render_template(
"submit.html",
v=v,
error=str(e),
title=title,
body=request.form.get("body", "")
), 400
else:
if file.content_type.startswith('image/'):
new_post.url = upload_imgur(file)