aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorJoas Schilling <213943+nickvergessen@users.noreply.github.com>2024-11-04 15:43:03 +0100
committerGitHub <noreply@github.com>2024-11-04 15:43:03 +0100
commitcd9f9b63f349b6332a800e485e77406a437f7677 (patch)
tree9a3d612bd79a8003443d3a44b7662d09c5f84e26 /apps
parentbd8348f5c1ab1732de02ccff8fefd8919ba2a8fd (diff)
parentcafe5ec539a611c6f70f83e7ab2ec02a7b9e2f18 (diff)
downloadnextcloud-server-cd9f9b63f349b6332a800e485e77406a437f7677.tar.gz
nextcloud-server-cd9f9b63f349b6332a800e485e77406a437f7677.zip
Merge pull request #48737 from nextcloud/fix/broken-event-notifications
fix(caldav): broken activity rich objects
Diffstat (limited to 'apps')
-rw-r--r--apps/dav/lib/CalDAV/Activity/Provider/Base.php6
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 43d80b4bb6a..9a75acb878c 100644
--- a/apps/dav/lib/CalDAV/Activity/Provider/Base.php
+++ b/apps/dav/lib/CalDAV/Activity/Provider/Base.php
@@ -44,14 +44,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'],
];
}
@@ -64,7 +64,7 @@ abstract class Base implements IProvider {
protected function generateLegacyCalendarParameter($id, $name) {
return [
'type' => 'calendar',
- 'id' => $id,
+ 'id' => (string)$id,
'name' => $name,
];
}