From db2e4c59106ed0bcc1f1cd3d6edf49f0d2764269 Mon Sep 17 00:00:00 2001 From: Aevann1 Date: Tue, 31 Aug 2021 17:57:24 +0200 Subject: [PATCH] dfdf --- files/routes/front.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/routes/front.py b/files/routes/front.py index 6f0ff9d50..a598ec092 100644 --- a/files/routes/front.py +++ b/files/routes/front.py @@ -24,7 +24,7 @@ def notifications(v): messages = request.args.get('messages', False) posts = request.args.get('posts', False) if messages: - if v.admin_level == 6: comments = g.db.query(Comment).filter(Comment.child_comments == [], or_(Comment.author_id==v.id, Comment.sentto==v.id, Comment.sentto==0)).filter(Comment.parent_submission == None).order_by(Comment.created_utc.desc()).offset(25 * (page - 1)).limit(26).all() + if v.admin_level == 6: comments = g.db.query(Comment).filter(len(Comment.child_comments) == 0, or_(Comment.author_id==v.id, Comment.sentto==v.id, Comment.sentto==0)).filter(Comment.parent_submission == None).order_by(Comment.created_utc.desc()).offset(25 * (page - 1)).limit(26).all() else: comments = g.db.query(Comment).filter(or_(Comment.author_id==v.id, Comment.sentto==v.id)).filter(Comment.parent_submission == None).order_by(Comment.created_utc.desc()).offset(25 * (page - 1)).limit(26).all() next_exists = (len(comments) == 26) comments = comments[:25]