aboutsummaryrefslogtreecommitdiffstats
path: root/apps/federation/lib/AppInfo/Application.php
diff options
context:
space:
mode:
Diffstat (limited to 'apps/federation/lib/AppInfo/Application.php')
-rw-r--r--apps/federation/lib/AppInfo/Application.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/federation/lib/AppInfo/Application.php b/apps/federation/lib/AppInfo/Application.php
index e5acab52857..e76a8f850c8 100644
--- a/apps/federation/lib/AppInfo/Application.php
+++ b/apps/federation/lib/AppInfo/Application.php
@@ -135,7 +135,8 @@ class Application extends \OCP\AppFramework\App {
public function getSyncService() {
$syncService = \OC::$server->query('CardDAVSyncService');
$dbHandler = $this->getContainer()->query('DbHandler');
- return new SyncFederationAddressBooks($dbHandler, $syncService);
+ $discoveryService = \OC::$server->getOCSDiscoveryService();
+ return new SyncFederationAddressBooks($dbHandler, $syncService, $discoveryService);
}
}