remotes/1693045480750635534/spooky-22
Aevann1 2021-09-16 12:06:55 +02:00
parent 85ebf3e5e9
commit e18dac8f40
1 changed files with 1 additions and 1 deletions

View File

@ -118,7 +118,7 @@ def post_id(pid, anything=None, v=None):
if not (v and v.shadowbanned) and not (v and v.admin_level == 6):
shadowbanned = g.db.query(User.id).filter(User.shadowbanned == True).subquery()
comments = g.db.query(Comment).filter(Comment.author_id.notin_(shadowbanned))
comments = comments.filter(Comment.author_id.notin_(shadowbanned))
if v.admin_level >=4:
comments=comments.options(joinedload(Comment.oauth_app))