diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2016-01-04 22:45:35 +0100 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2016-01-04 22:45:35 +0100 |
commit | 465c6c5a1a7932de8b38af53381cb944826d68de (patch) | |
tree | 366335269609cf75fe3dc46eb2368456c91bb3a4 /src/web | |
parent | Minor improvements to the crawler (logging of errors). (diff) | |
download | newspipe-465c6c5a1a7932de8b38af53381cb944826d68de.tar.gz newspipe-465c6c5a1a7932de8b38af53381cb944826d68de.tar.bz2 newspipe-465c6c5a1a7932de8b38af53381cb944826d68de.zip |
bug fix
Diffstat (limited to 'src/web')
-rw-r--r-- | src/web/templates/feed.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/templates/feed.html b/src/web/templates/feed.html index cce74b19..c421a411 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 %} |