Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix(ShareByCircleProvider): Include data in getSharesByPath to fix sh…
…are_with_displayname

Signed-off-by: provokateurin <[email protected]>
  • Loading branch information
provokateurin authored and backportbot[bot] committed Jun 2, 2025
commit 07f8fdad76d2665ebd1e6d032d1477b1775e58a6
2 changes: 1 addition & 1 deletion lib/ShareByCircleProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,7 @@ public function getShareById($shareId, $recipientId = null): IShare {
* @throws RequestBuilderException
*/
public function getSharesByPath(Node $path): array {
$wrappedShares = $this->shareWrapperService->getSharesByFileId($path->getId());
$wrappedShares = $this->shareWrapperService->getSharesByFileId($path->getId(), true);

return array_filter(
array_map(
Expand Down
Loading