mirror of
https://github.com/nextcloud/server.git
synced 2026-03-27 21:03:39 -04:00
Merge pull request #39370 from nextcloud/backport/39339/stable26
[stable26] fix(node): non-existing folder is not searchable
This commit is contained in:
commit
c174c47f1e
1 changed files with 4 additions and 0 deletions
|
|
@ -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();
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue