Skip to content

Commit

Permalink
fix(node): non-existing folder is not searchable
Browse files Browse the repository at this point in the history
the previosuly introduced searchBySystemTag was not overwritten in
NonExistingFolder and could run the inherited method.

Signed-off-by: Arthur Schiwon <[email protected]>
  • Loading branch information
blizzz committed Jul 12, 2023
1 parent e9ac028 commit f2642fc
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lib/private/Files/Node/NonExistingFolder.php
Original file line number Diff line number Diff line change
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 f2642fc

Please sign in to comment.