remotes/1693045480750635534/spooky-22
Aevann1 2021-12-21 02:24:18 +02:00
parent fed97dbb88
commit 48a68b171f
1 changed files with 4 additions and 2 deletions

View File

@ -1031,8 +1031,10 @@ def api_sticky_post(post_id, v):
else:
pins = g.db.query(Submission.id).filter(Submission.stickied != None, Submission.is_banned == False).count()
if pins > 2:
t = int(time.time()) + 3600
post.stickied = f"t:{t}"
if v.admin_level > 2:
t = int(time.time()) + 3600
post.stickied = f"t:{t}"
else: return {"error": "Can't exceed 3 pinned posts limit!"}, 403
else: post.stickied = v.username
g.db.add(post)