mirror of
https://github.com/nextcloud/server.git
synced 2026-06-04 22:35:24 -04:00
Merge pull request #10077 from nextcloud/lazy-search-fix
Fix lazy search backend
This commit is contained in:
commit
fe807823d2
1 changed files with 2 additions and 2 deletions
|
|
@ -54,7 +54,7 @@ class LazySearchBackend implements ISearchBackend {
|
|||
|
||||
public function getPropertyDefinitionsForScope($href, $path) {
|
||||
if ($this->backend) {
|
||||
return $this->backend->getArbiterPath();
|
||||
return $this->backend->getPropertyDefinitionsForScope($href, $path);
|
||||
} else {
|
||||
return [];
|
||||
}
|
||||
|
|
@ -62,7 +62,7 @@ class LazySearchBackend implements ISearchBackend {
|
|||
|
||||
public function search(Query $query) {
|
||||
if ($this->backend) {
|
||||
return $this->backend->getArbiterPath();
|
||||
return $this->backend->search($query);
|
||||
} else {
|
||||
return [];
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue