diff --git a/apps/dav/lib/CalDAV/Schedule/Plugin.php b/apps/dav/lib/CalDAV/Schedule/Plugin.php index 9e1006e72c0fd..897901a61a488 100644 --- a/apps/dav/lib/CalDAV/Schedule/Plugin.php +++ b/apps/dav/lib/CalDAV/Schedule/Plugin.php @@ -130,6 +130,11 @@ protected function getAddressesForPrincipal($principal) { if ($result === null) { $result = []; } + + // iterate through items and html decode values + foreach ($result as $key => $value) { + $result[$key] = urldecode($value); + } return $result; }