Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorVincent Petry <pvince81@owncloud.com>2014-03-21 15:28:27 +0400
committerVincent Petry <pvince81@owncloud.com>2014-03-21 15:28:27 +0400
commit37af74efb3e3511b2d6eacef67dc90f22a685bd3 (patch)
tree74fbfd647b2885912e61e7e3ddd7c974e08fb40d /apps
parenta52bc333a265444d3a038f08bb70231127b2c9bf (diff)
parent022d76c7bb999058803c6f0c41749672e681fab8 (diff)
Merge pull request #7655 from owncloud/shared-unencryptedsize
Fixed warning when browsing Shared folder
Diffstat (limited to 'apps')
-rw-r--r--apps/files_encryption/lib/proxy.php2
1 files changed, 1 insertions, 1 deletions
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;