summaryrefslogtreecommitdiffstats
path: root/lib/private/AppFramework
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2017-05-10 09:44:28 +0200
committerJoas Schilling <coding@schilljs.com>2017-05-10 09:45:11 +0200
commitca399406146d74f2f46f8b8815f0b3c165c996ab (patch)
tree2a1c5ffd705698c04f8cef433e64b4416690af18 /lib/private/AppFramework
parenta8bb4a18988534323d872b13a9895a2c9557b6c5 (diff)
downloadnextcloud-server-ca399406146d74f2f46f8b8815f0b3c165c996ab.tar.gz
nextcloud-server-ca399406146d74f2f46f8b8815f0b3c165c996ab.zip
Automatic creation of Identity manager
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/private/AppFramework')
-rw-r--r--lib/private/AppFramework/DependencyInjection/DIContainer.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/AppFramework/DependencyInjection/DIContainer.php b/lib/private/AppFramework/DependencyInjection/DIContainer.php
index 04747485c13..d24836228cc 100644
--- a/lib/private/AppFramework/DependencyInjection/DIContainer.php
+++ b/lib/private/AppFramework/DependencyInjection/DIContainer.php
@@ -165,7 +165,7 @@ class DIContainer extends SimpleContainer implements IAppContainer {
$this->registerService(\OC\Security\IdentityProof\Manager::class, function ($c) {
return new \OC\Security\IdentityProof\Manager(
- $this->getServer()->getAppDataDir('identityproof'),
+ $this->getServer()->query(\OC\Files\AppData\Factory::class),
$this->getServer()->getCrypto()
);
});