mirror of
https://github.com/nextcloud/server.git
synced 2026-06-10 01:00:50 -04:00
fix(node): non-existing folder is not searchable
the previosuly introduced searchBySystemTag was not overwritten in NonExistingFolder and could run the inherited method. Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
This commit is contained in:
parent
7eff5b06ac
commit
6eaaef1403
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