remotes/1693045480750635534/spooky-22
Aevann1 2022-02-01 09:37:15 +02:00
parent 6845be1802
commit fa917241da
1 changed files with 2 additions and 2 deletions

View File

@ -112,7 +112,7 @@ def notifications(v):
elif c.parent_submission:
replies = []
for x in c.replies:
if x.id not in all and x.author_id == v.id:
if x.author_id == v.id:
x.voted = 1
replies.append(x)
all.add(x.id)
@ -126,7 +126,7 @@ def notifications(v):
all.add(c.id)
c = c.parent_comment
if c.id not in all and c not in listing:
if c not in listing:
all.add(c.id)
listing.append(c)