diff options
author | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2023-08-02 20:53:37 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-02 20:53:37 +0200 |
commit | 0c3fe9123982f90bfe4f74c526975f362982a378 (patch) | |
tree | a40b557d595fbbc0d34498b4987582c11be68f09 /lib/private | |
parent | 500d4b82466a191a1c6a4237af113ae7d1eefc78 (diff) | |
parent | bf0059127838c33a611a5b21844806e55e2040a7 (diff) | |
download | nextcloud-server-0c3fe9123982f90bfe4f74c526975f362982a378.tar.gz nextcloud-server-0c3fe9123982f90bfe4f74c526975f362982a378.zip |
Merge pull request #39369 from nextcloud/backport/39339/stable27
[stable27] fix(node): non-existing folder is not searchable
Diffstat (limited to 'lib/private')
-rw-r--r-- | lib/private/Files/Node/NonExistingFolder.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/private/Files/Node/NonExistingFolder.php b/lib/private/Files/Node/NonExistingFolder.php index 0d573df7727..34621b18f19 100644 --- a/lib/private/Files/Node/NonExistingFolder.php +++ b/lib/private/Files/Node/NonExistingFolder.php @@ -154,6 +154,10 @@ class NonExistingFolder extends Folder { throw new NotFoundException(); } + public function searchBySystemTag(string $tagName, string $userId, int $limit = 0, int $offset = 0): array { + throw new NotFoundException(); + } + public function getById($id) { throw new NotFoundException(); } |