summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorBjoern Schiessle <schiessle@owncloud.com>2013-11-21 11:11:15 +0100
committerBjoern Schiessle <schiessle@owncloud.com>2013-11-21 11:11:15 +0100
commitc7dc6dc2c2d0d2de72256a6f7bcacaf3ec59bd0c (patch)
tree6d505d57fcd519777f6f63ca8f839992b7597e22 /apps
parent16b484209c4792ce8c43f197d678e3fb393b3ee5 (diff)
downloadnextcloud-server-c7dc6dc2c2d0d2de72256a6f7bcacaf3ec59bd0c.tar.gz
nextcloud-server-c7dc6dc2c2d0d2de72256a6f7bcacaf3ec59bd0c.zip
fix getFileKey() call
Diffstat (limited to 'apps')
-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;