Skip to content

Commit 237ed85

Browse files
authored
Merge pull request #39371 from nextcloud/backport/39339/stable25
[stable25] fix(node): non-existing folder is not searchable
2 parents 46a8c11 + e6438c3 commit 237ed85

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

lib/private/Files/Node/NonExistingFolder.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,10 @@ public function searchByTag($tag, $userId) {
154154
throw new NotFoundException();
155155
}
156156

157+
public function searchBySystemTag(string $tagName, string $userId, int $limit = 0, int $offset = 0): array {
158+
throw new NotFoundException();
159+
}
160+
157161
public function getById($id) {
158162
throw new NotFoundException();
159163
}

0 commit comments

Comments
 (0)