summaryrefslogtreecommitdiffstats
path: root/lib/private/FullTextSearch
diff options
context:
space:
mode:
authorMaxence Lange <maxence@artificial-owl.com>2018-10-31 15:44:57 +0100
committerRoeland Jago Douma <roeland@famdouma.nl>2018-10-31 19:43:18 +0100
commitfeeb62a496b1aecb3d86975e5df317c30aab3533 (patch)
treeecf8c689da1a1cab58f47a419de2cf4f28f335f4 /lib/private/FullTextSearch
parent654365581b50590efda188fbd8a2c961c99a386c (diff)
downloadnextcloud-server-feeb62a496b1aecb3d86975e5df317c30aab3533.tar.gz
nextcloud-server-feeb62a496b1aecb3d86975e5df317c30aab3533.zip
wrong method called
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
Diffstat (limited to 'lib/private/FullTextSearch')
-rw-r--r--lib/private/FullTextSearch/FullTextSearchManager.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/FullTextSearch/FullTextSearchManager.php b/lib/private/FullTextSearch/FullTextSearchManager.php
index 6529ef2506a..9a9b077cf23 100644
--- a/lib/private/FullTextSearch/FullTextSearchManager.php
+++ b/lib/private/FullTextSearch/FullTextSearchManager.php
@@ -195,7 +195,7 @@ class FullTextSearchManager implements IFullTextSearchManager {
* @throws FullTextSearchAppNotAvailableException
*/
public function updateIndexesStatus(string $providerId, array $documentIds, int $status, bool $reset = false) {
- $this->getIndexService()->updateIndexStatus($providerId, $documentIds, $status, $reset);
+ $this->getIndexService()->updateIndexesStatus($providerId, $documentIds, $status, $reset);
}