fsd''
This commit is contained in:
parent
7375548c62
commit
1375724848
1 changed files with 3 additions and 1 deletions
|
@ -122,7 +122,9 @@ def notifications(v):
|
|||
x.voted = 1
|
||||
if x not in c.replies2: c.replies2.append(x)
|
||||
|
||||
if c.parent_comment and c.parent_comment.author_id == v.id:
|
||||
counter = 0
|
||||
while counter < 10 and c.parent_comment and (c.parent_comment.author_id == v.id or c.parent_comment in comments):
|
||||
counter += 1
|
||||
parent = c.parent_comment
|
||||
if parent.replies2 == None: parent.replies2 = [c]
|
||||
elif c not in parent.replies2: parent.replies2.append(c)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue