summaryrefslogtreecommitdiffstats
path: root/js/public/app.js
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2013-09-23 02:11:54 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2013-09-23 02:11:54 +0200
commit00119cb60c9c1b24b141c7197fadb02c4e482861 (patch)
tree8b94ca4262e3c72aa1f7513520c20a7fc2c48e7e /js/public/app.js
parentd8eb445220de1b6a71ce77468b6aedec3e547697 (diff)
Empty folders should probably be displayed
Edit fix #361
Diffstat (limited to 'js/public/app.js')
-rw-r--r--js/public/app.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/public/app.js b/js/public/app.js
index 9ec1a71de..d92c0aec3 100644
--- a/js/public/app.js
+++ b/js/public/app.js
@@ -1379,7 +1379,7 @@ License along with this library. If not, see <http://www.gnu.org/licenses/>.
FolderBusinessLayer.prototype.isVisible = function(folderId) {
var feed, _i, _len, _ref;
- if (this._showAll.getShowAll()) {
+ if (this._showAll.getShowAll() || this._feedBusinessLayer.noFeeds()) {
return true;
} else {
if (this.isActive(folderId) || this._feedBusinessLayer.getFolderUnreadCount(folderId) > 0) {