forked from rDrama/rDrama
1
0
Fork 0
master
Aevann1 2021-08-07 23:34:27 +02:00
parent b9515ab1c1
commit f2606b5095
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ def notifications(v):
c._is_blocking = False
if c.parent_submission and c.parent_comment and c.parent_comment.author_id == v.id:
c.replies = []
while c.parent_comment:
while c.parent_comment and c.parent_comment.author_id == v.id:
parent = c.parent_comment
if c not in parent.replies2:
parent.replies2 = parent.replies2 + [c]