From 58689cd4ffa11f703b67910470a6d67b8494643d Mon Sep 17 00:00:00 2001 From: j Date: Tue, 29 Jan 2019 15:50:03 +0530 Subject: [PATCH] skip Inbox --- static/js/folders.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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'});