From 6845be1802effb8b92097f71f1cdc1273f456189 Mon Sep 17 00:00:00 2001 From: Aevann1 Date: Tue, 1 Feb 2022 09:36:50 +0200 Subject: [PATCH] fg --- files/routes/front.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/routes/front.py b/files/routes/front.py index 77f01412e..c5407ec1e 100644 --- a/files/routes/front.py +++ b/files/routes/front.py @@ -91,7 +91,7 @@ def notifications(v): if c.parent_submission and c.parent_comment and c.parent_comment.author_id == v.id: 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)