diff options
author | Benjamin Gaussorgues <benjamin.gaussorgues@nextcloud.com> | 2024-11-05 11:06:45 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-05 11:06:45 +0100 |
commit | 6c9ee5cd9f120a4701cf8cc21e6718c79e44b2ca (patch) | |
tree | d2c58a9f7559b8bce92ba53e8fc0de17b77c44d4 /apps | |
parent | 6aa43be452627d1a2877b1453899a795331f1010 (diff) | |
parent | 05b9cdf4534ac774231a680875f5731473cdc095 (diff) | |
download | nextcloud-server-6c9ee5cd9f120a4701cf8cc21e6718c79e44b2ca.tar.gz nextcloud-server-6c9ee5cd9f120a4701cf8cc21e6718c79e44b2ca.zip |
Merge pull request #49080 from nextcloud/backport/48737/stable30
Diffstat (limited to 'apps')
-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, ]; } |