forked from MarseyWorld/MarseyWorld
try to fix repeated notifs
parent
7ec3d1c5f2
commit
672e28b697
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue