minor fixes

This commit is contained in:
2025-07-01 18:27:52 +03:00
parent 9ae55c92ba
commit e0d1abc1e9
2 changed files with 2 additions and 3 deletions

View File

@ -36,7 +36,6 @@ def thread(slug):
page = max(1, min(page_count, int(request.args.get("page", default = 1))))
posts = thread.get_posts(POSTS_PER_PAGE, (page - 1) * POSTS_PER_PAGE)
print(posts)
topic = Topics.find({"id": thread.topic_id})
other_topics = Topics.select()