nnnnnnnnnnnn

remotes/1693045480750635534/spooky-22
Aevann1 2022-01-31 01:11:07 +02:00
parent be3d6a5783
commit b545d93d36
1 changed files with 12 additions and 2 deletions

View File

@ -94,7 +94,12 @@ def notifications(v):
c.is_blocked = False
c.is_blocking = False
if c.parent_submission and c.parent_comment and c.parent_comment.author_id == v.id:
c.replies = []
replies = []
for x in c.replies:
if x.author_id == v.id:
x.voted = 1
replies.append(x)
c.replies = replies
while c.parent_comment and c.parent_comment.author_id == v.id:
parent = c.parent_comment
if c not in parent.replies2:
@ -105,7 +110,12 @@ def notifications(v):
listing.append(c)
c.replies = c.replies2
elif c.parent_submission:
c.replies = []
replies = []
for x in c.replies:
if x.author_id == v.id:
x.voted = 1
replies.append(x)
c.replies = replies
if c not in listing:
listing.append(c)
else: