summaryrefslogtreecommitdiffstats
path: root/apps/dav
diff options
context:
space:
mode:
authorRobin Appelman <robin@icewind.nl>2018-07-02 13:42:41 +0200
committerRobin Appelman <robin@icewind.nl>2018-07-18 16:01:02 +0200
commit94a367910ee7c6ea8ea21f494b08e48cc8923321 (patch)
tree3c3c8da557adf350098cd5aa8f6f5ff6c01549bd /apps/dav
parent821d658ec357c167e37760fc8c099e00a24d6dd3 (diff)
downloadnextcloud-server-94a367910ee7c6ea8ea21f494b08e48cc8923321.tar.gz
nextcloud-server-94a367910ee7c6ea8ea21f494b08e48cc8923321.zip
Fix lazy search backend
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'apps/dav')
-rw-r--r--apps/dav/lib/Files/LazySearchBackend.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/dav/lib/Files/LazySearchBackend.php b/apps/dav/lib/Files/LazySearchBackend.php
index 6369046ae10..dc7fec607a4 100644
--- a/apps/dav/lib/Files/LazySearchBackend.php
+++ b/apps/dav/lib/Files/LazySearchBackend.php
@@ -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 [];
}