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

github.com/nextcloud/fulltextsearch.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Command/Index.php')
-rw-r--r--lib/Command/Index.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Command/Index.php b/lib/Command/Index.php
index 40e6c6c..ac7952b 100644
--- a/lib/Command/Index.php
+++ b/lib/Command/Index.php
@@ -237,7 +237,8 @@ class Index extends ExtendedBase {
$this->displayResult();
$providers = $this->providerService->getProviders();
- foreach ($providers as $provider) {
+ foreach ($providers as $providerWrapper) {
+ $provider = $providerWrapper->getProvider();
if (!$this->isIncludedProvider($options, $provider->getId())) {
continue;