From 961006d6c918770a18f58ba6f8046a7fe210d88a Mon Sep 17 00:00:00 2001 From: Aevann1 Date: Wed, 17 Nov 2021 15:06:29 +0200 Subject: [PATCH] fd --- files/routes/search.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/routes/search.py b/files/routes/search.py index 52b54c729..8f30555f7 100644 --- a/files/routes/search.py +++ b/files/routes/search.py @@ -57,7 +57,7 @@ def searchposts(v): - posts = g.db.query(Submission.id) + posts = g.db.query(Submission.id).filter(Submission.club == False) if not (v and v.admin_level > 1): posts = posts.filter(Submission.private == False)