From 7d2666699bc37a8f45035e82712143818ed0ab65 Mon Sep 17 00:00:00 2001 From: Clark Tomlinson Date: Thu, 7 May 2015 11:41:02 -0400 Subject: [PATCH] removing encryption preview check --- apps/files_trashbin/lib/helper.php | 3 --- 1 file changed, 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;