From 48f26e7e27d2c61245b222bc0041217b219e411e Mon Sep 17 00:00:00 2001 From: Aevann1 Date: Mon, 4 Apr 2022 03:02:03 +0200 Subject: [PATCH] fs --- files/routes/front.py | 1 + 1 file changed, 1 insertion(+) diff --git a/files/routes/front.py b/files/routes/front.py index 2d2d449a8..a78d10b99 100644 --- a/files/routes/front.py +++ b/files/routes/front.py @@ -133,6 +133,7 @@ def notifications(v): listing = [] for c in comments: + print(c.id, flush=True) if c.parent_submission: if c.replies2 == None: c.replies2 = c.child_comments.filter(or_(Comment.author_id == v.id, Comment.id.in_(cids))).all()