diff options
author | Clark Tomlinson <fallen013@gmail.com> | 2015-05-07 11:41:02 -0400 |
---|---|---|
committer | Clark Tomlinson <fallen013@gmail.com> | 2015-05-18 09:47:46 -0400 |
commit | 7d2666699bc37a8f45035e82712143818ed0ab65 (patch) | |
tree | ec87eaffa561dfe03399129978e14ab84ab2d1f2 /apps/files_trashbin/lib | |
parent | d557519746c251e732855b0e6e5e4ea3ae4a7377 (diff) | |
download | nextcloud-server-7d2666699bc37a8f45035e82712143818ed0ab65.tar.gz nextcloud-server-7d2666699bc37a8f45035e82712143818ed0ab65.zip |
removing encryption preview check
Diffstat (limited to 'apps/files_trashbin/lib')
-rw-r--r-- | apps/files_trashbin/lib/helper.php | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/apps/files_trashbin/lib/helper.php b/apps/files_trashbin/lib/helper.php index 5d244d7b39c..320ad2eeb8e 100644 --- a/apps/files_trashbin/lib/helper.php +++ b/apps/files_trashbin/lib/helper.php @@ -115,9 +115,6 @@ class Helper $entry['id'] = $id++; $entry['etag'] = $entry['mtime']; // add fake etag, it is only needed to identify the preview image $entry['permissions'] = \OCP\Constants::PERMISSION_READ; - if (\OCP\App::isEnabled('encryption')) { - $entry['isPreviewAvailable'] = false; - } $files[] = $entry; } return $files; |