From b92b5c63b1b4f714c05932a50588f871a7b89e5e Mon Sep 17 00:00:00 2001 From: Simple_Not <44047940+moonbaseDelta@users.noreply.github.com> Date: Thu, 13 Jul 2023 19:57:40 +1000 Subject: [PATCH] check posts --- app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app.py b/app.py index a2e21a8..430d2b3 100644 --- a/app.py +++ b/app.py @@ -60,8 +60,8 @@ def page_board(board_id): @app.route("/db_posts") def page_posts_from_db(): - posts = db.collection('posts') - postos = [ p for p in postos] + postos = db.collection('posts') + postos = [ p for p in postos] return render_template("interactive-posts.html", postos=postos)