Merge branch 'master' of https://github.com/Aevann1/Drama
commit
5f474888f2
|
@ -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
|
||||
|
|
|
@ -322,7 +322,6 @@ def api_comment(v):
|
|||
basedguy.basedcount += 1
|
||||
if pill: basedguy.pills += f"{pill.group(1)}, "
|
||||
g.db.add(basedguy)
|
||||
g.db.flush()
|
||||
|
||||
body2 = BASED_MSG.format(username=basedguy.username, basedcount=basedguy.basedcount, pills=basedguy.pills)
|
||||
|
||||
|
|
Loading…
Reference in New Issue