Merge pull request #39370 from nextcloud/backport/39339/stable26

[stable26] fix(node): non-existing folder is not searchable
This commit is contained in:
Arthur Schiwon 2023-08-02 21:16:12 +02:00 committed by GitHub
commit c174c47f1e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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();
}