fix(GoogleCalendarAPIService): Sanitize calendar name

fixes #166
This commit is contained in:
Marcel Klehr 2024-03-04 11:14:11 +01:00
Родитель 7d858c23a7
Коммит 2267aa3122
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -173,7 +173,7 @@ class GoogleCalendarAPIService {
$params['{http://apple.com/ns/ical/}calendar-color'] = $color;
}
$newCalName = trim($calName) . ' (' . $this->l10n->t('Google Calendar import') .')';
$newCalName = urlencode(trim($calName) . ' (' . $this->l10n->t('Google Calendar import') .')');
$ncCalId = $this->calendarExists($userId, $newCalName);
$calendarIsNew = is_null($ncCalId);
if (is_null($ncCalId)) {