fix error message

pull/148/head
Aevann 2023-05-11 16:35:47 +03:00
parent a35b878fa0
commit b4ef8c53de
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ def media_ratelimit(v):
count = g.db.query(Media).filter(Media.user_id == v.id, Media.created_utc > t).count()
if count > 100 and v.admin_level < PERMS['USE_ADMIGGER_THREADS']:
print(STARS, flush=True)
print(f'@{v.username} hit the 75 file daily limit!')
print(f'@{v.username} hit the 100 file daily limit!')
print(STARS, flush=True)
abort(500)