mirror of
https://github.com/nextcloud/server.git
synced 2026-04-15 22:11:17 -04:00
Fix lazy search backend
Signed-off-by: Robin Appelman <robin@icewind.nl>
This commit is contained in:
parent
bff20585c7
commit
1f9f5e2e5e
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