mirror of
https://github.com/nextcloud/server.git
synced 2026-06-09 00:32:29 -04:00
Merge pull request #12169 from nextcloud/interface-fulltextsearc-issue-00001
wrong method called
This commit is contained in:
commit
ed35bc7f40
2 changed files with 3 additions and 3 deletions
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -65,11 +65,11 @@ interface IIndexService {
|
|||
* @since 15.0.0
|
||||
*
|
||||
* @param string $providerId
|
||||
* @param $documentId
|
||||
* @param string $documentId
|
||||
* @param int $status
|
||||
* @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);
|
||||
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in a new issue