forked from MarseyWorld/MarseyWorld
sdf
parent
e487daa260
commit
ee3736ffed
|
@ -62,8 +62,6 @@ def check_ban_evade(v):
|
|||
post.ban_reason="ban evasion"
|
||||
g.db.add(post)
|
||||
|
||||
g.db.flush()
|
||||
|
||||
ma=ModAction(
|
||||
kind="ban_post",
|
||||
user_id=AUTOJANNY_ACCOUNT,
|
||||
|
@ -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