aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/Server.php
diff options
context:
space:
mode:
authorblizzz <blizzz@arthur-schiwon.de>2020-11-24 17:23:37 +0100
committerGitHub <noreply@github.com>2020-11-24 17:23:37 +0100
commit5d03b5c5ddbc8df4f8f64c02dba69679bdd0d4bf (patch)
treef66350829227a3f748c7141343faeb96d7e5a8a2 /lib/private/Server.php
parent6156a49f6ed258da2e4949f16d331959af537adb (diff)
parent16a78f535a3b607864e0d151de13b0f161520f5c (diff)
downloadnextcloud-server-5d03b5c5ddbc8df4f8f64c02dba69679bdd0d4bf.tar.gz
nextcloud-server-5d03b5c5ddbc8df4f8f64c02dba69679bdd0d4bf.zip
Merge pull request #24162 from nextcloud/fix/noid/fedshares-displaynamez
set the display name of federated sharees from addressbook
Diffstat (limited to 'lib/private/Server.php')
-rw-r--r--lib/private/Server.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Server.php b/lib/private/Server.php
index 73a8360f9b9..d2567995270 100644
--- a/lib/private/Server.php
+++ b/lib/private/Server.php
@@ -1257,7 +1257,7 @@ class Server extends ServerContainer implements IServerContainer {
});
$this->registerService(ICloudIdManager::class, function (ContainerInterface $c) {
- return new CloudIdManager();
+ return new CloudIdManager($c->get(\OCP\Contacts\IManager::class));
});
$this->registerAlias(\OCP\GlobalScale\IConfig::class, \OC\GlobalScale\Config::class);