diff options
author | Björn Schießle <schiessle@owncloud.com> | 2013-06-03 15:26:58 +0200 |
---|---|---|
committer | Björn Schießle <schiessle@owncloud.com> | 2013-06-03 15:26:58 +0200 |
commit | b02f4dc62c797f11818d245015e76b49636afbf0 (patch) | |
tree | 86f16038d676a32529f3a443e644b870c049c027 | |
parent | 42f66af5a306ea959c7be3eb84ff93b4faf6cb43 (diff) | |
download | nextcloud-server-b02f4dc62c797f11818d245015e76b49636afbf0.tar.gz nextcloud-server-b02f4dc62c797f11818d245015e76b49636afbf0.zip |
$session->setPrivateKey expects only one parameter
-rw-r--r-- | apps/files_encryption/hooks/hooks.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_encryption/hooks/hooks.php b/apps/files_encryption/hooks/hooks.php index 47e240769bc..5271b51202c 100644 --- a/apps/files_encryption/hooks/hooks.php +++ b/apps/files_encryption/hooks/hooks.php @@ -63,7 +63,7 @@ class Hooks { $session = new \OCA\Encryption\Session($view);
- $session->setPrivateKey($privateKey, $params['uid']);
+ $session->setPrivateKey($privateKey);
// Check if first-run file migration has already been performed
$migrationCompleted = $util->getMigrationStatus();
|