This commit is contained in:
Aevann1 2021-09-18 15:16:40 +02:00
parent d55421ef4b
commit 9f038d600a
2 changed files with 0 additions and 5 deletions

View file

@ -61,8 +61,6 @@ def check_ban_evade(v):
post.is_banned=True
post.ban_reason="ban evasion"
g.db.add(post)
g.db.flush()
ma=ModAction(
kind="ban_post",
@ -72,8 +70,6 @@ def check_ban_evade(v):
)
g.db.add(ma)
g.db.flush()
for comment in g.db.query(Comment).options(lazyload('*')).filter_by(author_id=v.id).all():
if comment.is_banned:
continue