Fix the index
This commit is contained in:
parent
a5e0983ca8
commit
f7a5f56955
1 changed files with 14 additions and 8 deletions
6
app.py
6
app.py
|
@ -805,6 +805,10 @@ def index():
|
|||
"meta.undo": False,
|
||||
"$or": [{"meta.pinned": False}, {"meta.pinned": {"$exists": False}}],
|
||||
}
|
||||
|
||||
pinned = []
|
||||
# Only fetch the pinned notes if we're on the first page
|
||||
if not request.args.get("older_than") and not request.args.get("newer_than"):
|
||||
q_pinned = {
|
||||
"box": Box.OUTBOX.value,
|
||||
"type": ActivityType.CREATE.value,
|
||||
|
@ -813,9 +817,11 @@ def index():
|
|||
"meta.pinned": True,
|
||||
}
|
||||
pinned = list(DB.activities.find(q_pinned))
|
||||
|
||||
outbox_data, older_than, newer_than = paginated_query(
|
||||
DB.activities, q, limit=25 - len(pinned)
|
||||
)
|
||||
|
||||
return render_template(
|
||||
"index.html",
|
||||
outbox_data=outbox_data,
|
||||
|
|
Loading…
Reference in a new issue