diff --git a/CHANGELOG.md b/CHANGELOG.md
index 8cdc93775..4a67c66ad 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,6 +7,7 @@ You can also check [on GitHub](https://github.com/nextcloud/news/releases), the
# Unreleased
## [25.x.x]
### Changed
+- Show red error bubble only if more than 8 updates fail.
### Fixed
diff --git a/src/components/Sidebar.vue b/src/components/Sidebar.vue
index 8b718ff18..f6acfc111 100644
--- a/src/components/Sidebar.vue
+++ b/src/components/Sidebar.vue
@@ -75,7 +75,7 @@
-
@@ -92,13 +92,13 @@
-
-
+
+
-
@@ -629,9 +629,9 @@ export default Vue.extend({
return true
}
if (this.isFolder(item)) {
- return item.feedCount > 0 || this.isActiveFolder(item) || this.hasActiveFeeds(item) || item.updateErrorCount > 0
+ return item.feedCount > 0 || this.isActiveFolder(item) || this.hasActiveFeeds(item) || item.updateErrorCount > 8
} else {
- return item.unreadCount > 0 || item.updateErrorCount > 0 || this.isActiveFeed(item)
+ return item.unreadCount > 0 || item.updateErrorCount > 8 || this.isActiveFeed(item)
}
},
sortedFolderFeeds(item: Feed | Folder) {