mirror of
https://github.com/nextcloud/server.git
synced 2026-06-09 08:44:07 -04:00
Merge pull request #31859 from max65482/fix_group_share
Fix: Birthday calendar issue with shared calendars
This commit is contained in:
commit
6bb0985e59
1 changed files with 1 additions and 1 deletions
|
|
@ -184,7 +184,7 @@ class Backend {
|
|||
'status' => 1,
|
||||
'readOnly' => (int) $row['access'] === self::ACCESS_READ,
|
||||
'{http://owncloud.org/ns}principal' => (string)$row['principaluri'],
|
||||
'{http://owncloud.org/ns}group-share' => is_null($p)
|
||||
'{http://owncloud.org/ns}group-share' => isset($p['uri']) ? str_starts_with($p['uri'], 'principals/groups') : false
|
||||
];
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue