fix: remove url encoding from calendar names#279
Conversation
Signed-off-by: Lukas Schaefer <lukas@lschaefer.xyz>
|
|
||
| $newCalName = urlencode(trim($calName) . ' (' . $this->l10n->t('Google Calendar import') . ')'); | ||
| $newCalName = trim($calName) . ' (' . $this->l10n->t('Google Calendar import') . ')'; | ||
| $params['{DAV:}displayname'] = $newCalName; |
|
@lukasdotcom Thanks for the fix. With this applied, I'm seeing this: Maybe we need some kind of migration Manually deleted the corresponding rows from I'm also still able to delete the calendar, which I understand to be the original motivation of #166. The calendar still exists in the database, but I think that's also the behaviour for manually created calendars in the UI. BTW do you know why it does this? |
Thanks for reporting the problem. When creating the calendar I checked the calendar name instead of uri before creating it. This will be fixed in #280. Thanks for mentioning that.
The reason for the original change was due to the |
Yeah I see that |
@MarcelRobitaille
Resolves: #275