diff --git a/files/routes/posts.py b/files/routes/posts.py index acce38216..2642623bd 100644 --- a/files/routes/posts.py +++ b/files/routes/posts.py @@ -34,15 +34,7 @@ def toggle_club(pid, v): post.club = not post.club g.db.add(post) - if post.author_id!=v.id: - ma=ModAction( - kind="club" if post.club else "unclub", - user_id=v.id, - target_submission_id=post.id, - ) - g.db.add(ma) - - g.db.commit() +W g.db.commit() if post.club: return {"message": "Post has been marked as club-only!"} else: return {"message": "Post has been unmarked as club-only!"}