mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
fix(caldav): decode values before returning
Signed-off-by: SebastianKrupinski <krupinskis05@gmail.com>
This commit is contained in:
parent
718ef5dea5
commit
79c97e7f09
1 changed files with 5 additions and 0 deletions
|
|
@ -130,6 +130,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