diff --git a/files/classes/user.py b/files/classes/user.py index fd969729d..c324b4149 100644 --- a/files/classes/user.py +++ b/files/classes/user.py @@ -371,7 +371,7 @@ class User(Base, Stndrd, Age_times): @cache.memoize(timeout=86400) def notification_messages(self, page=1): - comments = g.db.query(Comment).filter(or_(Comment.author_id==self.id, Comment.sentto==self.id), Comment.parent_submission == None).order_by(Comment.created_utc.desc(), not_(Comment.child_comments.any())).offset(25*(page-1)).limit(26).all() + comments = g.db.query(Comment.id).filter(or_(Comment.author_id==self.id, Comment.sentto==self.id), Comment.parent_submission == None).order_by(Comment.created_utc.desc(), not_(Comment.child_comments.any())).offset(25*(page-1)).limit(26).all() return comments