From feeb62a496b1aecb3d86975e5df317c30aab3533 Mon Sep 17 00:00:00 2001 From: Maxence Lange Date: Wed, 31 Oct 2018 15:44:57 +0100 Subject: [PATCH] wrong method called Signed-off-by: Maxence Lange --- lib/private/FullTextSearch/FullTextSearchManager.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/FullTextSearch/FullTextSearchManager.php b/lib/private/FullTextSearch/FullTextSearchManager.php index 6529ef2506..9a9b077cf2 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); }