Fix janny pinning.

remotes/1693176582716663532/tmp_refs/heads/watchparty
Snakes 2022-10-23 19:45:41 -04:00
parent d869353fdf
commit 97eb823ed0
1 changed files with 1 additions and 1 deletions

View File

@ -1207,7 +1207,7 @@ def distinguish_post(post_id, v):
def sticky_post(post_id, v):
post = get_post(post_id)
if post.is_banned: abort(403, "Can't sticky removed posts!")
if post.stickied.endswith('(pin award)'):
if post.stickied and post.stickied.endswith('(pin award)'):
abort(403, "Can't pin award pins!")
pins = g.db.query(Submission).filter(Submission.stickied != None, Submission.is_banned == False).count()