Fixed dav_debug cast

This commit is contained in:
Christian Mollekopf 2024-02-05 12:18:51 +01:00
parent 176f557ec7
commit a3bad978e2

View file

@ -58,7 +58,7 @@ class kolab_dav_client
protected function request($path, $method, $body = '', $headers = [])
{
$rcube = rcube::get_instance();
$debug = (array) $rcube->config->get('dav_debug');
$debug = (bool) $rcube->config->get('dav_debug');
$request_config = [
'store_body' => true,