diff options
author | Bjoern Schiessle <schiessle@owncloud.com> | 2013-11-21 11:11:15 +0100 |
---|---|---|
committer | Bjoern Schiessle <schiessle@owncloud.com> | 2013-11-21 11:11:15 +0100 |
commit | c7dc6dc2c2d0d2de72256a6f7bcacaf3ec59bd0c (patch) | |
tree | 6d505d57fcd519777f6f63ca8f839992b7597e22 /apps | |
parent | 16b484209c4792ce8c43f197d678e3fb393b3ee5 (diff) | |
download | nextcloud-server-c7dc6dc2c2d0d2de72256a6f7bcacaf3ec59bd0c.tar.gz nextcloud-server-c7dc6dc2c2d0d2de72256a6f7bcacaf3ec59bd0c.zip |
fix getFileKey() call
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_encryption/lib/util.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_encryption/lib/util.php b/apps/files_encryption/lib/util.php index a9468e34d41..ca9651742f8 100644 --- a/apps/files_encryption/lib/util.php +++ b/apps/files_encryption/lib/util.php @@ -461,7 +461,7 @@ class Util { $relPath = Helper::stripUserFilesPath($path); } - $fileKey = Keymanager::getFileKey($this->view, $relPath); + $fileKey = Keymanager::getFileKey($this->view, $this, $relPath); if ($fileKey === false) { return false; |