forked from rDrama/rDrama
1
0
Fork 0
master
Aevann1 2021-09-11 06:35:43 +02:00
parent e36b524530
commit 424adaa673
1 changed files with 14 additions and 12 deletions

View File

@ -47,24 +47,26 @@ def notifications(v):
next_exists = (len(comments) > 100)
listing = comments[:100]
else:
notifications = v.notifications.join(Notification.comment).filter(
Comment.is_banned == False,
Comment.deleted_utc == 0,
Comment.author_id != AUTOJANNY_ACCOUNT,
).order_by(Notification.id.desc()).offset(100 * (page - 1)).all()
).order_by(Notification.id.desc()).offset(25 * (page - 1)).limit(26).all()
next_exists = (len(notifications) > 25)
notifications = notifications[:25]
cids = [x.comment_id for x in notifications]
comments = get_comments(cids, v=v, load_parent=True)
comments = []
for index, x in enumerate(notifications):
c = x.comment
if x.read and index > 101: break
elif not x.read:
c.unread = True
x.read = True
g.db.add(x)
comments.append(c)
next_exists = (len(comments) > 100)
listing = comments[:100]
i = 0
for x in notifications:
try:
if not x.read: comments[i].unread = True
except: continue
x.read = True
g.db.add(x)
i += 1
if not posts:
listing = []