diff options
author | Bjoern Schiessle <schiessle@owncloud.com> | 2014-10-23 14:57:53 +0200 |
---|---|---|
committer | Bjoern Schiessle <schiessle@owncloud.com> | 2014-11-07 15:17:24 +0100 |
commit | 3d19bb2e51333fed3edb106c52740a8dba4f700c (patch) | |
tree | 774d30d8199e580713cac8bba2b8c49c9044458a /apps | |
parent | fa3b6192ec19340a626712d67710d5a2df691d60 (diff) | |
download | nextcloud-server-3d19bb2e51333fed3edb106c52740a8dba4f700c.tar.gz nextcloud-server-3d19bb2e51333fed3edb106c52740a8dba4f700c.zip |
also try to get file info from part file
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_encryption/lib/proxy.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files_encryption/lib/proxy.php b/apps/files_encryption/lib/proxy.php index 31723ae7647..55f2df783c4 100644 --- a/apps/files_encryption/lib/proxy.php +++ b/apps/files_encryption/lib/proxy.php @@ -345,8 +345,8 @@ class Proxy extends \OC_FileProxy { return $size; } - // get file info from database/cache if not .part file - if (empty($fileInfo) && !Helper::isPartialFilePath($path)) { + // get file info from database/cache + if (empty($fileInfo)) { $proxyState = \OC_FileProxy::$enabled; \OC_FileProxy::$enabled = false; $fileInfo = $view->getFileInfo($path); |