Merge pull request #23564 from nextcloud/backport/23497/stable19

[stable19] CalDavBackend: check if timerange is array before accessing
This commit is contained in:
Morris Jobke 2020-10-20 09:56:44 +02:00 committed by GitHub
commit 3157ff441c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -16,6 +16,7 @@
* @author Thomas Citharel <nextcloud@tcit.fr> * @author Thomas Citharel <nextcloud@tcit.fr>
* @author Thomas Müller <thomas.mueller@tmit.eu> * @author Thomas Müller <thomas.mueller@tmit.eu>
* @author Vinicius Cubas Brand <vinicius@eita.org.br> * @author Vinicius Cubas Brand <vinicius@eita.org.br>
* @author Simon Spannagel <simonspa@kth.se>
* *
* @license AGPL-3.0 * @license AGPL-3.0
* *
@ -1312,7 +1313,7 @@ class CalDavBackend extends AbstractBackend implements SyncSupport, Subscription
$requirePostFilter = false; $requirePostFilter = false;
} }
// There was a time-range filter // There was a time-range filter
if ($componentType === 'VEVENT' && isset($filters['comp-filters'][0]['time-range'])) { if ($componentType === 'VEVENT' && isset($filters['comp-filters'][0]['time-range']) && is_array($filters['comp-filters'][0]['time-range'])) {
$timeRange = $filters['comp-filters'][0]['time-range']; $timeRange = $filters['comp-filters'][0]['time-range'];
// If start time OR the end time is not specified, we can do a // If start time OR the end time is not specified, we can do a