Merge pull request #7655 from owncloud/shared-unencryptedsize

Fixed warning when browsing Shared folder
remotes/origin/ldap_group_count
Vincent Petry 11 years ago
commit 37af74efb3
  1. 2
      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;

Loading…
Cancel
Save