fg
This commit is contained in:
parent
4eb99a9b20
commit
fc0f009435
1 changed files with 5 additions and 2 deletions
|
@ -41,6 +41,7 @@ def notifications(v):
|
||||||
c._is_blocked = False
|
c._is_blocked = False
|
||||||
c._is_blocking = False
|
c._is_blocking = False
|
||||||
if c.parent_submission and c.parent_comment and c.parent_comment.author_id == v.id:
|
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:
|
||||||
parent = c.parent_comment
|
parent = c.parent_comment
|
||||||
if c not in parent.replies2:
|
if c not in parent.replies2:
|
||||||
|
@ -50,8 +51,10 @@ def notifications(v):
|
||||||
if c not in listing:
|
if c not in listing:
|
||||||
listing.append(c)
|
listing.append(c)
|
||||||
c.replies = c.replies2
|
c.replies = c.replies2
|
||||||
elif c.parent_submission and c not in listing:
|
elif c.parent_submission:
|
||||||
listing.append(c)
|
if c not in listing:
|
||||||
|
c.replies = []
|
||||||
|
listing.append(c)
|
||||||
else:
|
else:
|
||||||
if c.parent_comment:
|
if c.parent_comment:
|
||||||
while c.level > 1:
|
while c.level > 1:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue