aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--newspipe/web/views/bookmark.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/newspipe/web/views/bookmark.py b/newspipe/web/views/bookmark.py
index db15be42..2577f747 100644
--- a/newspipe/web/views/bookmark.py
+++ b/newspipe/web/views/bookmark.py
@@ -96,7 +96,7 @@ def list_(per_page, status="all"):
filters["shared"] = True
bookmarks = (
- BookmarkController(user_id).read(**filters).order_by(desc("time")).limit(100)
+ BookmarkController(user_id).read(**filters).order_by(desc("time")).limit(1000)
)
# tag_contr = BookmarkTagController(user_id)
bgstack15