put the abort after the printing in media_ratelimit

pull/138/head
Aevann 2023-03-07 02:46:09 +02:00
parent 590728b1c4
commit 1738f11f9c
1 changed files with 1 additions and 1 deletions

View File

@ -36,10 +36,10 @@ def media_ratelimit(v):
t = time.time() - 86400
count = g.db.query(Media).filter(Media.user_id == v.id, Media.created_utc > t).count()
if count > 50:
abort(500)
print(STARS, flush=True)
print(f'@{v.username} hit the 50 file daily limit!')
print(STARS, flush=True)
abort(500)
def process_files(files, v, body):
if g.is_tor or not files.get("file"): return body