Skip to content
Snippets Groups Projects
Unverified Commit ed35bc7f authored by Roeland Jago Douma's avatar Roeland Jago Douma Committed by GitHub
Browse files

Merge pull request #12169 from nextcloud/interface-fulltextsearc-issue-00001

wrong method called
parents 65436558 0c8c6ad5
No related branches found
No related tags found
No related merge requests found
...@@ -195,7 +195,7 @@ class FullTextSearchManager implements IFullTextSearchManager { ...@@ -195,7 +195,7 @@ class FullTextSearchManager implements IFullTextSearchManager {
* @throws FullTextSearchAppNotAvailableException * @throws FullTextSearchAppNotAvailableException
*/ */
public function updateIndexesStatus(string $providerId, array $documentIds, int $status, bool $reset = false) { 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);
} }
......
...@@ -65,11 +65,11 @@ interface IIndexService { ...@@ -65,11 +65,11 @@ interface IIndexService {
* @since 15.0.0 * @since 15.0.0
* *
* @param string $providerId * @param string $providerId
* @param $documentId * @param string $documentId
* @param int $status * @param int $status
* @param bool $reset * @param bool $reset
*/ */
public function updateIndexStatus(string $providerId, $documentId, int $status, bool $reset = false); public function updateIndexStatus(string $providerId, string $documentId, int $status, bool $reset = false);
/** /**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment