summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2015-11-27 21:46:33 +0100
committerBernhard Posselt <dev@bernhard-posselt.com>2015-11-27 21:46:33 +0100
commitde05996aaa26875419ee89593a7cabc9d2172dbb (patch)
tree310f48263a4f09930cdf01061545cb9244224001 /templates
parent32ef47a1ec3fc4da73408cf0d348581b219f72ee (diff)
bump update error limit to 50
Diffstat (limited to 'templates')
-rw-r--r--templates/part.navigation.feed.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/part.navigation.feed.php b/templates/part.navigation.feed.php
index aaf2c62de..eb0f4aa94 100644
--- a/templates/part.navigation.feed.php
+++ b/templates/part.navigation.feed.php
@@ -1,7 +1,7 @@
<li ng-class="{
active: Navigation.isFeedActive(feed.id),
unread: Navigation.isFeedUnread(feed.id),
- updateerror: feed.updateErrorCount>10
+ updateerror: feed.updateErrorCount>50
}"
ng-repeat="feed in Navigation.getFeedsOfFolder(<?php p($_['folderId']); ?>)
| orderBy:['-pinned', 'title.toLowerCase()'] track by feed.url"
@@ -9,7 +9,7 @@
|| Navigation.isShowAll()
|| Navigation.isFeedActive(feed.id)
|| !feed.id
- || feed.updateErrorCount>10"
+ || feed.updateErrorCount>50"
data-id="{{ feed.id }}"
class="feed with-counter with-menu animate-show"
news-draggable-disable="{{
@@ -33,7 +33,7 @@
ng-href="#/items/feeds/{{ feed.id }}/"
class="title"
ng-class="{'icon-rss': !feed.faviconLink}"
- title="{{ feed.updateErrorCount > 10 ? '<?php p($l->t('Feed failed to update more than 10 times')); ?>: ' + feed.lastUpdateError : feed.title }}">
+ title="{{ feed.updateErrorCount>50 ? '<?php p($l->t('Update failed more than 50 times')); ?>: ' + feed.lastUpdateError : feed.title }}">
{{ feed.title }}
</a>