Skip to content

Commit

Permalink
Merge pull request #39370 from nextcloud/backport/39339/stable26
Browse files Browse the repository at this point in the history
[stable26] fix(node): non-existing folder is not searchable
  • Loading branch information
blizzz committed Aug 2, 2023
2 parents 177a13a + 6eaaef1 commit c174c47
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lib/private/Files/Node/NonExistingFolder.php
Expand Up @@ -154,6 +154,10 @@ public function searchByTag($tag, $userId) {
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();
}
Expand Down

0 comments on commit c174c47

Please sign in to comment.