From 0f713e5a5c7e61d32c67b55761df2a17e5204cfc Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Wed, 4 Mar 2020 22:18:14 +0100 Subject: Load only 1000 bookmarks when user is not authenticated. --- newspipe/web/views/bookmark.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- cgit