From 022d76c7bb999058803c6f0c41749672e681fab8 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Mon, 10 Mar 2014 17:25:16 +0100 Subject: [PATCH] Fixed warning when browsing Shared folder The virtual "Shared" folder doesn't have an unencrypted_size field. This fix adds a check to prevent warnings in the log. --- apps/files_encryption/lib/proxy.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_encryption/lib/proxy.php b/apps/files_encryption/lib/proxy.php index b7e1599c1fe..bae1fded53d 100644 --- a/apps/files_encryption/lib/proxy.php +++ b/apps/files_encryption/lib/proxy.php @@ -344,7 +344,7 @@ class Proxy extends \OC_FileProxy { \OC_FileProxy::$enabled = false; $fileInfo = $view->getFileInfo($path); \OC_FileProxy::$enabled = $proxyState; - if ($fileInfo['unencrypted_size'] > 0) { + if (isset($fileInfo['unencrypted_size']) && $fileInfo['unencrypted_size'] > 0) { return $fileInfo['unencrypted_size']; } return $size;