diff --git a/static/js/folders.js b/static/js/folders.js index f4e84a3..f413156 100644 --- a/static/js/folders.js +++ b/static/js/folders.js @@ -338,7 +338,7 @@ oml.ui.folders = function() { that.updateOwnLists = function(callback) { oml.getLists(function(lists) { var items = lists.filter(function(list) { - return list.user == '' && list.type != 'library'; + return list.user == '' && list.type != 'library' && list.name != 'Inbox'; }); oml.$ui.folder[0].$content .css({height: 16 + items.length * 16 + 'px'});