we can only close the session if encryption is not used

This commit is contained in:
Thomas Müller 2014-08-07 11:07:11 +02:00
parent 2821f7241b
commit 2fb8fcf6cb
1 changed files with 4 additions and 1 deletions

View File

@ -100,7 +100,10 @@ if (isset($path)) {
$file = basename($path);
// Download the file
if (isset($_GET['download'])) {
\OC::$server->getSession()->close();
if (!\OCP\App::isEnabled('files_encryption')) {
// encryption app requires the session to store the keys in
\OC::$server->getSession()->close();
}
if (isset($_GET['files'])) { // download selected files
$files = urldecode($_GET['files']);
$files_list = json_decode($files);