This commit is contained in:
fireworks88 2021-09-09 19:02:59 +02:00
parent 0caf20fdb5
commit 92d4d72a72

View file

@ -919,7 +919,7 @@ def submit_post(v):
else:
if file.content_type.startswith('image/'):
file.save(f"image.{file.filename.split('.')[-1]}")
new_post.url = upload_imgur(f"image.{file.format}")
new_post.url = upload_imgur(f"image.{file.filename.split('.')[-1]}")
else:
try:
post_url = upload_video(file)