Explorar o código

feedtree: don't hide feeds with errors

Andrew Dolgov %!s(int64=8) %!d(string=hai) anos
pai
achega
9109e171ee
Modificáronse 1 ficheiros con 2 adicións e 1 borrados
  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 {