mirror of
https://github.com/nextcloud/server.git
synced 2026-06-07 15:53:04 -04:00
Merge pull request #46613 from nextcloud/backport/46594/stable28
[stable28] fix(caldav): decode values before returning
This commit is contained in:
commit
6253c26dff
1 changed files with 5 additions and 0 deletions
|
|
@ -147,6 +147,11 @@ class Plugin extends \Sabre\CalDAV\Schedule\Plugin {
|
|||
if ($result === null) {
|
||||
$result = [];
|
||||
}
|
||||
|
||||
// iterate through items and html decode values
|
||||
foreach ($result as $key => $value) {
|
||||
$result[$key] = urldecode($value);
|
||||
}
|
||||
|
||||
return $result;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue