From dfc8b95cff3a78c82bca6e6a8e818b9fe9e4e8d2 Mon Sep 17 00:00:00 2001 From: ralf Date: Thu, 21 Dec 2023 17:31:43 +0200 Subject: [PATCH] fix /mail/ REST API call returned null instead of identity names --- mail/src/ApiHandler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mail/src/ApiHandler.php b/mail/src/ApiHandler.php index 06aa41d7b9..8d042dc3bc 100644 --- a/mail/src/ApiHandler.php +++ b/mail/src/ApiHandler.php @@ -487,7 +487,7 @@ class ApiHandler extends Api\CalDAV\Handler { $files['files'][] = [ 'path' => $path.$ident_id, - 'props' => ['name' => ['val' => $identity]], + 'props' => ['data' => ['val' => $identity]], ]; } }