Browse Source

Merge pull request #31859 from max65482/fix_group_share

Fix: Birthday calendar issue with shared calendars
tags/v26.0.0beta5
Anna 1 year ago
parent
commit
6bb0985e59
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      apps/dav/lib/DAV/Sharing/Backend.php

+ 1
- 1
apps/dav/lib/DAV/Sharing/Backend.php View File

@@ -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…
Cancel
Save