Browse Source

feedtree: don't hide feeds with errors

Andrew Dolgov 8 years ago
parent
commit
9109e171ee
1 changed files with 2 additions and 1 deletions
  1. 2 1
      js/FeedTree.js

+ 2 - 1
js/FeedTree.js

@@ -433,10 +433,11 @@ dojo.declare("fox.FeedTree", dijit.Tree, {
 				var bare_id = parseInt(feed.bare_id);;
 
 				var unread = feed.unread[0];
+				var has_error = feed.error[0] != '';
 				var node = tree._itemNodesMap[id];
 
 				if (node) {
-					if (hide && unread == 0 && (bare_id > 0 || bare_id < _label_base_index || !show_special)) {
+					if (hide && unread == 0 && !has_error && (bare_id > 0 || bare_id < _label_base_index || !show_special)) {
 						Effect.Fade(node[0].rowNode, {duration : 0.3,
 							queue: { position: 'end', scope: 'FFADE-' + id, limit: 1 }});
 					} else {