This commit is contained in:
Aevann1 2022-01-29 15:57:55 +02:00
parent aeadd31521
commit afb96c7d60
2 changed files with 3 additions and 6 deletions

View file

@ -570,7 +570,7 @@ class User(Base):
return [x[0] for x in posts.order_by(Submission.created_utc.desc()).offset(25 * (page - 1)).all()]
@lazy
def saved_comment_idlist(self):
def saved_comment_idlist(self, page=1):
try: saved = [x[0] for x in g.db.query(SaveRelationship.comment_id).filter(SaveRelationship.user_id == self.id).all()]
except: return []
@ -589,7 +589,7 @@ class User(Base):
Comment.author_id.notin_(blocked)
)
return [x[0] for x in comments.order_by(Comment.created_utc.desc()).all()]
return [x[0] for x in comments.order_by(Comment.created_utc.desc()).offset(25 * (page - 1)).all()]
@property
@lazy