always show parent comment in notifications

pull/134/head
Aevann 2023-02-25 21:57:50 +02:00
parent 7a8ec235e0
commit 8be4e6adc2
1 changed files with 1 additions and 1 deletions

View File

@ -322,7 +322,7 @@ def notifications(v:User):
for x in c.replies2:
if x.replies2 == None: x.replies2 = []
count = 0
while count < 50 and c.parent_comment and (c.parent_comment.author_id == v.id or c.parent_comment.id in cids):
while count < 50 and c.parent_comment and (count == 0 or c.parent_comment.author_id == v.id or c.parent_comment.id in cids):
count += 1
c = c.parent_comment
if c.replies2 == None: