fd
This commit is contained in:
parent
33e211296c
commit
cd3c26586a
1 changed files with 1 additions and 1 deletions
|
@ -373,7 +373,7 @@ class User(Base, Stndrd, Age_times):
|
|||
def notification_messages(self, page=1):
|
||||
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
|
||||
return [c[0] for c in comments]
|
||||
|
||||
@property
|
||||
@lazy
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue