diff --git a/files/routes/posts.py b/files/routes/posts.py index 1ad63eaa5b..9aef05615d 100644 --- a/files/routes/posts.py +++ b/files/routes/posts.py @@ -30,7 +30,7 @@ def toggle_club(pid, v): post = get_post(pid) - if post.author_id != v.id or not v.paid_dues: abort(403) + if post.author_id != v.id or v.admin_level == 0: abort(403) post.club = not post.club g.db.add(post)