forked from MarseyWorld/MarseyWorld
sdf
parent
798e7e9e55
commit
3163a1a54d
|
@ -104,11 +104,11 @@ def notifications(v):
|
|||
|
||||
print("1: " + str(time.time() - t), flush=True)
|
||||
|
||||
all = set(x[0] for x in g.db.query(Notification.comment_id).join(Comment, Notification.comment_id == Comment.id).filter(Comment.is_banned == False,
|
||||
all = [x[0] for x in g.db.query(Notification.comment_id).join(Comment, Notification.comment_id == Comment.id).filter(Comment.is_banned == False,
|
||||
Comment.deleted_utc == 0,
|
||||
Comment.author_id != AUTOJANNY_ID,
|
||||
Comment.body_html.notlike('<html><body><p>New rdrama mention: <a href="https://old.reddit.com/r/%')
|
||||
).order_by(Comment.top_comment_id.desc()).limit(50 + 50*page).all())
|
||||
).order_by(Comment.top_comment_id.desc()).limit(50 + 50*page).all()]
|
||||
|
||||
print("2: " + str(time.time() - t), flush=True)
|
||||
|
||||
|
|
Loading…
Reference in New Issue