try to fix repeated notifs

pull/134/head
Aevann 2023-02-26 00:21:59 +02:00
parent 7ec3d1c5f2
commit 672e28b697
1 changed files with 1 additions and 1 deletions

View File

@ -322,7 +322,7 @@ def notifications(v:User):
for x in c.replies2:
if x.replies2 == None: x.replies2 = []
count = 0
while count < 50 and c.parent_comment and (count == 0 or c.parent_comment.author_id == v.id or c.parent_comment.id in cids):
while count < 50 and c.parent_comment and ((count == 0 and c.parent_comment.id not in cids) or c.parent_comment.author_id == v.id or c.parent_comment.id in cids):
count += 1
c = c.parent_comment
if c.replies2 == None: