aboutsummaryrefslogtreecommitdiff
path: root/src/web/templates
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2016-01-04 22:39:48 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2016-01-04 22:39:48 +0100
commit44edd51e211ab4c0e192a41423b1e57474754198 (patch)
tree125fc2f3223781bec30ea82116fdfa13984784a9 /src/web/templates
parentAdd the possibility to mark as read articles older than 5 days. (diff)
downloadnewspipe-44edd51e211ab4c0e192a41423b1e57474754198.tar.gz
newspipe-44edd51e211ab4c0e192a41423b1e57474754198.tar.bz2
newspipe-44edd51e211ab4c0e192a41423b1e57474754198.zip
Minor improvements to the crawler (logging of errors).
Diffstat (limited to 'src/web/templates')
-rw-r--r--src/web/templates/feed.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/templates/feed.html b/src/web/templates/feed.html
index c421a411..cce74b19 100644
--- a/src/web/templates/feed.html
+++ b/src/web/templates/feed.html
@@ -21,7 +21,7 @@
{{ _("Last download:") }} {{ feed.last_retrieved | datetime }}<br />
{% endif %}
- {% if feed.error_count >= conf.DEFAULT_MAX_ERROR %}
+ {% if feed.error_count > conf.DEFAULT_MAX_ERROR %}
<b>{{ _("That feed has encountered too much consecutive errors and won't be retrieved anymore.") }}</b><br />
{{ _("You can click <a href='%(reset_error_url)s'>here</a> to reset the error count and reactivate the feed.", reset_error_url=url_for("feed.reset_errors", feed_id=feed.id)) }}
{% elif feed.error_count > 0 %}
bgstack15