remotes/1693045480750635534/spooky-22
Aevann1 2022-04-04 01:28:54 +02:00
parent 7b5ae6f4f0
commit 53b67dc8d0
1 changed files with 3 additions and 2 deletions

View File

@ -124,11 +124,12 @@ def notifications(v):
listing = []
for c in comments:
if c.parent_submission:
cids.add(c.id)
c.replies2 = [x for x in c.child_comments if c.author_id == v.id or x.id in all]
cids = cids | set(x.id for x in c.replies2)
while c.parent_comment and (c.parent_comment.author_id == v.id or c.parent_comment in comments):
c = c.parent_comment
c.replies2 = [x for x in c.child_comments if c.author_id == v.id or x.id in all]
cids = cids | set(x.id for x in c.replies2)
c = c.parent_comment
cids.add(c.id)
else:
while c.parent_comment: