diff options
author | Bjoern Schiessle <schiessle@owncloud.com> | 2014-05-20 17:54:14 +0200 |
---|---|---|
committer | Bjoern Schiessle <schiessle@owncloud.com> | 2014-06-14 10:14:07 +0200 |
commit | 961317d9114afda53a381802880d6c94af7ccb47 (patch) | |
tree | e35bf4e38e9b31f95c0b9b07b25ebb2e13e97a26 /apps/files_encryption | |
parent | 87b0021e5606888642b5798ba39b0525bf3f3e14 (diff) | |
download | nextcloud-server-961317d9114afda53a381802880d6c94af7ccb47.tar.gz nextcloud-server-961317d9114afda53a381802880d6c94af7ccb47.zip |
make sure to enable incognito mode when mounting a public link and update init status of the encryption app
Diffstat (limited to 'apps/files_encryption')
-rw-r--r-- | apps/files_encryption/lib/session.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/files_encryption/lib/session.php b/apps/files_encryption/lib/session.php index 93be6691f96..ef18b924dd8 100644 --- a/apps/files_encryption/lib/session.php +++ b/apps/files_encryption/lib/session.php @@ -100,6 +100,8 @@ class Session { $privateKey = Crypt::decryptPrivateKey($encryptedKey, ''); $this->setPublicSharePrivateKey($privateKey); + $this->setInitialized(\OCA\Encryption\Session::INIT_SUCCESSFUL); + \OC_FileProxy::$enabled = $proxyStatus; } } |