aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@users.noreply.github.com>2018-12-20 11:37:18 +0100
committerGitHub <noreply@github.com>2018-12-20 11:37:18 +0100
commit6146c474850557c16d5ac03477e9f8664b2555a7 (patch)
tree8106e033ac3b4760e5e87f17678de0a60fa7cdb9 /lib/private
parent6dccd4e5e2f7ee966b11f6f958832cdd4d8eca30 (diff)
parent5557485abac05544d02916f478ca64ef3b22e5cc (diff)
downloadnextcloud-server-6146c474850557c16d5ac03477e9f8664b2555a7.tar.gz
nextcloud-server-6146c474850557c16d5ac03477e9f8664b2555a7.zip
Merge pull request #13170 from nextcloud/backport/13155/master
[master] allow content provider to generate new Index
Diffstat (limited to 'lib/private')
-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 9a9b077cf23..444774fb4a7 100644
--- a/lib/private/FullTextSearch/FullTextSearchManager.php
+++ b/lib/private/FullTextSearch/FullTextSearchManager.php
@@ -166,7 +166,7 @@ class FullTextSearchManager implements IFullTextSearchManager {
* @throws FullTextSearchAppNotAvailableException
*/
public function createIndex(string $providerId, string $documentId, string $userId, int $status = 0): IIndex {
- return $this->getIndexService()->getIndex($providerId, $documentId);
+ return $this->getIndexService()->createIndex($providerId, $documentId, $userId, $status);
}