remotes/1693045480750635534/spooky-22
Aevann1 2022-01-22 02:46:30 +02:00
parent f29362d73f
commit 41ead74a4c
1 changed files with 2 additions and 1 deletions

View File

@ -627,6 +627,7 @@ def thumbnail_thread(pid):
elif x.headers.get("Content-Type","").startswith("image/"):
image_req=x
image = PILimage.open(BytesIO(x.content))
else:
db.close()
@ -638,7 +639,7 @@ def thumbnail_thread(pid):
for chunk in image_req.iter_content(1024):
file.write(chunk)
post.thumburl = process_image(filename=name, resize=True)
post.thumburl = process_image(filename=name, resize=100)
db.add(post)
db.commit()
db.close()