aboutsummaryrefslogtreecommitdiffstats
path: root/apps/encryption/appinfo
diff options
context:
space:
mode:
authorBjoern Schiessle <schiessle@owncloud.com>2015-04-28 17:29:10 +0200
committerBjoern Schiessle <schiessle@owncloud.com>2015-04-28 20:21:53 +0200
commitdf428b76ac498110bde0bfec1ad726cf24c21cfa (patch)
tree36675bbc0c99deee2c11fb996fb8396b90266818 /apps/encryption/appinfo
parent557b4a2cb0ae0367e5facb1e4be136de07ab8cff (diff)
downloadnextcloud-server-df428b76ac498110bde0bfec1ad726cf24c21cfa.tar.gz
nextcloud-server-df428b76ac498110bde0bfec1ad726cf24c21cfa.zip
skip update of encryption keys if file is not encrypted
Diffstat (limited to 'apps/encryption/appinfo')
-rw-r--r--apps/encryption/appinfo/application.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/encryption/appinfo/application.php b/apps/encryption/appinfo/application.php
index fa620992c81..0c9dcb76fbc 100644
--- a/apps/encryption/appinfo/application.php
+++ b/apps/encryption/appinfo/application.php
@@ -101,7 +101,8 @@ class Application extends \OCP\AppFramework\App {
return new Encryption(
$container->query('Crypt'),
$container->query('KeyManager'),
- $container->query('Util')
+ $container->query('Util'),
+ $container->getServer()->getLogger()
);
});
}