]> git.wh0rd.org - tt-rss.git/commitdiff
feedtree: don't hide feeds with errors
authorAndrew Dolgov <noreply@fakecake.org>
Wed, 12 Aug 2015 18:47:40 +0000 (21:47 +0300)
committerAndrew Dolgov <noreply@fakecake.org>
Wed, 12 Aug 2015 18:47:40 +0000 (21:47 +0300)
js/FeedTree.js

index a9a69187e2699d18a307ab0ffbb0d618afba10b4..c7c892b42ac564564db695efc3bf0709e685907e 100644 (file)
@@ -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 {