diff options
Diffstat (limited to 'apps/comments/js/filesplugin.js')
-rw-r--r-- | apps/comments/js/filesplugin.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/comments/js/filesplugin.js b/apps/comments/js/filesplugin.js index bf6bb05146b..084cfb41034 100644 --- a/apps/comments/js/filesplugin.js +++ b/apps/comments/js/filesplugin.js @@ -29,9 +29,9 @@ * @namespace */ OCA.Comments.FilesPlugin = { - allowedLists: [ - 'files', - 'favorites' + ignoreLists: [ + 'files_trashbin', + 'files.public' ], _formatCommentCount: function(count) { @@ -47,7 +47,7 @@ attach: function(fileList) { var self = this; - if (this.allowedLists.indexOf(fileList.id) < 0) { + if (this.ignoreLists.indexOf(fileList.id) >= 0) { return; } |