Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2016-01-25 13:39:57 +0300
committerThomas Müller <thomas.mueller@tmit.eu>2016-01-25 13:39:57 +0300
commit2d7528bc64640240452711891ce0b339935797c0 (patch)
tree49a14f9d8cba52ab91ab4cbb6da08a2f0ae05c2c /apps/federation/appinfo
parent7909c47b7c595acf2cd9e6ed2da4906339541311 (diff)
Adding unit tests
Diffstat (limited to 'apps/federation/appinfo')
-rw-r--r--apps/federation/appinfo/application.php3
-rw-r--r--apps/federation/appinfo/info.xml2
2 files changed, 3 insertions, 2 deletions
diff --git a/apps/federation/appinfo/application.php b/apps/federation/appinfo/application.php
index 6137b34e28d..0d033f44982 100644
--- a/apps/federation/appinfo/application.php
+++ b/apps/federation/appinfo/application.php
@@ -174,8 +174,9 @@ class Application extends \OCP\AppFramework\App {
* @return SyncFederationAddressBooks
*/
public function getSyncService() {
+ $syncService = \OC::$server->query('CardDAVSyncService');
$dbHandler = $this->getContainer()->query('DbHandler');
- return new SyncFederationAddressBooks($dbHandler);
+ return new SyncFederationAddressBooks($dbHandler, $syncService);
}
}
diff --git a/apps/federation/appinfo/info.xml b/apps/federation/appinfo/info.xml
index 54ea4831be0..7786deef38e 100644
--- a/apps/federation/appinfo/info.xml
+++ b/apps/federation/appinfo/info.xml
@@ -5,7 +5,7 @@
<description>ownCloud Federation allows you to connect with other trusted ownClouds to exchange the user directory. For example this will be used to auto-complete external users for federated sharing.</description>
<licence>AGPL</licence>
<author>Bjoern Schiessle</author>
- <version>0.0.2</version>
+ <version>0.0.3</version>
<namespace>Federation</namespace>
<category>other</category>
<dependencies>