forked from rDrama/rDrama
1
0
Fork 0
master
Aevann1 2021-08-31 18:59:48 +02:00
parent 1a2ce00993
commit 550913d513
1 changed files with 3 additions and 3 deletions

View File

@ -163,11 +163,11 @@ def get_comment(i, v=None, graceful=False, **kwargs):
if v: if v:
items = g.db.query(Comment) comment=g.db.query(Comment).filter(Comment.id == i).first()
comment=items.filter(Comment.id == i).first()
print("sex")
if not comment and not graceful: abort(404) if not comment and not graceful: abort(404)
print("fuck")
block = g.db.query(UserBlock).filter( block = g.db.query(UserBlock).filter(
or_( or_(