From 3a6c785d031d984573424878f788acc328963c99 Mon Sep 17 00:00:00 2001 From: Aevann1 Date: Mon, 4 Apr 2022 02:51:46 +0200 Subject: [PATCH] fsd --- 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 dd42272c47..b66b4121fd 100644 --- a/files/routes/front.py +++ b/files/routes/front.py @@ -126,7 +126,7 @@ def notifications(v): print(time.time() - sex) sex = time.time() - cids = g.db.query(Comment.id).join(Notification).filter( + cids = g.db.query(Comment).join(Notification).filter( Notification.user_id == v.id, Comment.is_banned == False, Comment.deleted_utc == 0,