summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--apps/comments/js/filesplugin.js8
-rw-r--r--apps/systemtags/js/filesplugin.js9
2 files changed, 8 insertions, 9 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;
}
diff --git a/apps/systemtags/js/filesplugin.js b/apps/systemtags/js/filesplugin.js
index 588037455ae..db97b91a072 100644
--- a/apps/systemtags/js/filesplugin.js
+++ b/apps/systemtags/js/filesplugin.js
@@ -21,14 +21,13 @@
* @namespace
*/
OCA.SystemTags.FilesPlugin = {
- allowedLists: [
- 'files',
- 'favorites',
- 'systemtagsfilter'
+ ignoreLists: [
+ 'files_trashbin',
+ 'files.public'
],
attach: function(fileList) {
- if (this.allowedLists.indexOf(fileList.id) < 0) {
+ if (this.ignoreLists.indexOf(fileList.id) >= 0) {
return;
}