We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4566cf7 commit 17ef20cCopy full SHA for 17ef20c
1 file changed
apps/dav/lib/DAV/Sharing/Backend.php
@@ -138,7 +138,7 @@ public function getShares(int $resourceId): array {
138
'status' => 1,
139
'readOnly' => (int)$row['access'] === Backend::ACCESS_READ,
140
'{http://owncloud.org/ns}principal' => (string)$row['principaluri'],
141
- '{http://owncloud.org/ns}group-share' => isset($p['uri']) && str_starts_with($p['uri'], 'principals/groups')
+ '{http://owncloud.org/ns}group-share' => isset($p['uri']) && (str_starts_with($p['uri'], 'principals/groups') || str_starts_with($p['uri'], 'principals/circles'))
142
];
143
}
144
$this->shareCache->set((string)$resourceId, $shares);
0 commit comments