diff options
author | Anna Larch <anna@nextcloud.com> | 2024-10-16 17:18:45 +0200 |
---|---|---|
committer | backportbot[bot] <backportbot[bot]@users.noreply.github.com> | 2024-11-04 14:46:47 +0000 |
commit | 05b9cdf4534ac774231a680875f5731473cdc095 (patch) | |
tree | d2242fa74d59dffcf33020ecd03b987ab501b714 /apps/dav | |
parent | 0319e50ae3fbb398b76e81347187e31d90bdef95 (diff) | |
download | nextcloud-server-05b9cdf4534ac774231a680875f5731473cdc095.tar.gz nextcloud-server-05b9cdf4534ac774231a680875f5731473cdc095.zip |
fix(caldav): broken activity rich objectsbackport/48737/stable30
Signed-off-by: Anna Larch <anna@nextcloud.com>
Diffstat (limited to 'apps/dav')
-rw-r--r-- | apps/dav/lib/CalDAV/Activity/Provider/Base.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/dav/lib/CalDAV/Activity/Provider/Base.php b/apps/dav/lib/CalDAV/Activity/Provider/Base.php index a063a31d015..14e68cc6a3d 100644 --- a/apps/dav/lib/CalDAV/Activity/Provider/Base.php +++ b/apps/dav/lib/CalDAV/Activity/Provider/Base.php @@ -52,14 +52,14 @@ abstract class Base implements IProvider { $data['name'] === CalDavBackend::PERSONAL_CALENDAR_NAME) { return [ 'type' => 'calendar', - 'id' => $data['id'], + 'id' => (string)$data['id'], 'name' => $l->t('Personal'), ]; } return [ 'type' => 'calendar', - 'id' => $data['id'], + 'id' => (string)$data['id'], 'name' => $data['name'], ]; } @@ -72,7 +72,7 @@ abstract class Base implements IProvider { protected function generateLegacyCalendarParameter($id, $name) { return [ 'type' => 'calendar', - 'id' => $id, + 'id' => (string)$id, 'name' => $name, ]; } |