forked from rDrama/rDrama
1
0
Fork 0
master
Aevann1 2022-04-04 02:48:16 +02:00
parent 2c34cb98ac
commit 1ef2adeaec
1 changed files with 2 additions and 2 deletions

View File

@ -115,7 +115,7 @@ def notifications(v):
next_exists = (len(comments) > 25)
comments = comments[:25]
print(sex = time.time())
sex = time.time()
cids = [x[0] for x in g.db.query(Comment.id).join(Notification).filter(
Notification.user_id == v.id,
Comment.is_banned == False,
@ -125,7 +125,7 @@ def notifications(v):
).order_by(Comment.top_comment_id.desc()).all()]
print(time.time() - sex)
print(sex = time.time())
sex = time.time()
cids = g.db.query(Comment.id).join(Notification).filter(
Notification.user_id == v.id,
Comment.is_banned == False,