aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrançois Schmidts <francois.schmidts@gmail.com>2015-07-02 18:08:43 +0200
committerFrançois Schmidts <francois.schmidts@gmail.com>2015-07-02 18:08:43 +0200
commitb9b5e2aaf37a7e480ba58439495e9f60f418c599 (patch)
tree6e8e1fd8d45832a59f8ec37e2009cc68069f2375
parentbasic UI to maniuplate filters (diff)
downloadnewspipe-b9b5e2aaf37a7e480ba58439495e9f60f418c599.tar.gz
newspipe-b9b5e2aaf37a7e480ba58439495e9f60f418c599.tar.bz2
newspipe-b9b5e2aaf37a7e480ba58439495e9f60f418c599.zip
using conf.DEFAULT_MAX_ERROR in feed template
-rw-r--r--pyaggr3g470r/templates/feed.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyaggr3g470r/templates/feed.html b/pyaggr3g470r/templates/feed.html
index 09a064e5..cce74b19 100644
--- a/pyaggr3g470r/templates/feed.html
+++ b/pyaggr3g470r/templates/feed.html
@@ -21,7 +21,7 @@
{{ _("Last download:") }} {{ feed.last_retrieved | datetime }}<br />
{% endif %}
- {% if feed.error_count > 2 %}
+ {% 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