From 199b641a386d061b984fc8cafd826b7a58721a2e Mon Sep 17 00:00:00 2001 From: Michiel Scholten Date: Sat, 24 Mar 2018 21:39:53 +0100 Subject: [PATCH] Removed limit for feeds --- digimarks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/digimarks.py b/digimarks.py index b7a5868..e03ed88 100644 --- a/digimarks.py +++ b/digimarks.py @@ -913,7 +913,7 @@ def publictag_feed(tagkey): Bookmark.userkey == this_tag.userkey, Bookmark.tags.contains(this_tag.tag), Bookmark.status == Bookmark.VISIBLE - ).limit(15) + ) feed = AtomFeed(this_tag.tag, feed_url=request.url, url=make_external(url_for('publictag_page', tagkey=tagkey))) for bookmark in bookmarks: updated_date = bookmark.modified_date