* Calendar/CalDAV: do NOT limit number of returned events for GET requests with download parameter

This commit is contained in:
ralf 2023-08-09 15:19:31 +02:00
parent 342808353d
commit 3467763dea

View File

@ -1291,7 +1291,8 @@ class CalDAV extends HTTP_WebDAV_Server
$propfind_options = array( $propfind_options = array(
'path' => $options['path'], 'path' => $options['path'],
'depth' => 1, 'depth' => 1,
'other' => [['name' => 'nresults', 'data' => $chunk_size]], // do NOT limit response, if GET parameter download is given
'other' => isset($_GET['download']) ? [] : [['name' => 'nresults', 'data' => $chunk_size]],
); );
$files = array(); $files = array();
if (($ret = $this->PROPFIND($propfind_options,$files)) !== true) if (($ret = $this->PROPFIND($propfind_options,$files)) !== true)