fix 413 error for patrons

remotes/1693045480750635534/spooky-22
Aevann1 2022-06-22 21:12:12 +02:00
parent c02c53dde6
commit e1d0269a81
1 changed files with 4 additions and 6 deletions

View File

@ -91,12 +91,10 @@ def process_video(file):
def process_image(filename=None, resize=0):
size = os.stat(filename).st_size
if resize == 100: patron = False
else: patron = g.v.patron
if size > 16 * 1024 * 1024 or not patron and size > 8 * 1024 * 1024:
os.remove(filename)
abort(413)
if resize != 100:
if size > 16 * 1024 * 1024 or not patron and size > 8 * 1024 * 1024:
os.remove(filename)
abort(413)
i = Image.open(filename)