diff options
author | Björn Schießle <schiessle@owncloud.com> | 2013-05-21 12:22:03 +0200 |
---|---|---|
committer | Björn Schießle <schiessle@owncloud.com> | 2013-05-21 12:22:03 +0200 |
commit | 4c27c7e1994e863926edaad6e682b3f889075e2f (patch) | |
tree | 0a3a5f47d8170f57af47b0d3cef9a4353f64c4c1 | |
parent | 64591cf7547258aa15136329d8ed582701b4107a (diff) | |
download | nextcloud-server-4c27c7e1994e863926edaad6e682b3f889075e2f.tar.gz nextcloud-server-4c27c7e1994e863926edaad6e682b3f889075e2f.zip |
fix path, needs to be relative to data/
-rw-r--r-- | apps/files_encryption/lib/proxy.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_encryption/lib/proxy.php b/apps/files_encryption/lib/proxy.php index 55ad882a8f9..ea6b3bf345c 100644 --- a/apps/files_encryption/lib/proxy.php +++ b/apps/files_encryption/lib/proxy.php @@ -484,7 +484,7 @@ class Proxy extends \OC_FileProxy $fileInfo['unencrypted_size'] = $size; // put file info - $view->putFileInfo($path_f, $fileInfo); + $view->putFileInfo($path, $fileInfo); } } } |