This commit is contained in:
Aevann1 2021-09-22 20:36:03 +02:00
parent 8a848c9f45
commit 7c0b0fc413
10 changed files with 66 additions and 128 deletions

View file

@ -72,8 +72,8 @@ def notifications(v):
if not posts:
listing = []
for c in comments:
c._is_blocked = False
c._is_blocking = False
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 = []
while c.parent_comment and c.parent_comment.author_id == v.id:
@ -104,7 +104,6 @@ def notifications(v):
next_exists=next_exists,
page=page,
standalone=True,
render_replies=True,
is_notification_page=True)