summaryrefslogtreecommitdiffstats
path: root/lib/private/share20/providerfactory.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/private/share20/providerfactory.php')
-rw-r--r--lib/private/share20/providerfactory.php8
1 files changed, 7 insertions, 1 deletions
diff --git a/lib/private/share20/providerfactory.php b/lib/private/share20/providerfactory.php
index bb440d2e01f..c2980b22515 100644
--- a/lib/private/share20/providerfactory.php
+++ b/lib/private/share20/providerfactory.php
@@ -21,6 +21,7 @@
namespace OC\Share20;
use OCA\FederatedFileSharing\AddressHandler;
+use OCA\FederatedFileSharing\DiscoveryManager;
use OCA\FederatedFileSharing\FederatedShareProvider;
use OCA\FederatedFileSharing\Notifications;
use OCA\FederatedFileSharing\TokenHandler;
@@ -91,9 +92,14 @@ class ProviderFactory implements IProviderFactory {
$this->serverContainer->getURLGenerator(),
$l
);
+ $discoveryManager = new DiscoveryManager(
+ $this->serverContainer->getMemCacheFactory(),
+ $this->serverContainer->getHTTPClientService()
+ );
$notifications = new Notifications(
$addressHandler,
- $this->serverContainer->getHTTPClientService()
+ $this->serverContainer->getHTTPClientService(),
+ $discoveryManager
);
$tokenHandler = new TokenHandler(
$this->serverContainer->getSecureRandom()