mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
Merge pull request #49080 from nextcloud/backport/48737/stable30
This commit is contained in:
commit
6c9ee5cd9f
1 changed files with 3 additions and 3 deletions
|
|
@ -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,
|
||||
];
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue