aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2016-10-05 08:14:16 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2016-10-05 08:14:16 +0200
commit805e8e0f51bb04b5218216a1771bf77e6ec09153 (patch)
treeeb0093b5b51fb0e98ea2febb124289bd6a82d356
parentBy default only list feeds with unread articles by default. (diff)
downloadnewspipe-805e8e0f51bb04b5218216a1771bf77e6ec09153.tar.gz
newspipe-805e8e0f51bb04b5218216a1771bf77e6ec09153.tar.bz2
newspipe-805e8e0f51bb04b5218216a1771bf77e6ec09153.zip
Bugfix: 'feeds' is now a list.
-rw-r--r--src/web/templates/feed_list_simple.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/templates/feed_list_simple.html b/src/web/templates/feed_list_simple.html
index 976c3631..f15d5f0a 100644
--- a/src/web/templates/feed_list_simple.html
+++ b/src/web/templates/feed_list_simple.html
@@ -1,4 +1,4 @@
-{% if feeds.count() != 0 %}
+{% if feeds | length != 0 %}
<div class="table-responsive">
<table class="table table-striped">
<thead>
bgstack15