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
diff options
context:
space:
mode:
authorBjoern Schiessle <schiessle@owncloud.com>2013-11-21 14:11:15 +0400
committerBjoern Schiessle <schiessle@owncloud.com>2013-11-21 14:11:15 +0400
commitc7dc6dc2c2d0d2de72256a6f7bcacaf3ec59bd0c (patch)
tree6d505d57fcd519777f6f63ca8f839992b7597e22 /apps/files_encryption/lib
parent16b484209c4792ce8c43f197d678e3fb393b3ee5 (diff)
fix getFileKey() call
Diffstat (limited to 'apps/files_encryption/lib')
-rw-r--r--apps/files_encryption/lib/util.php2
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;