Merge pull request #24444 from nextcloud/backport/24357/stable19
[stable19] Make sure we add new line between vcf groups exports
This commit is contained in:
commit
7bc8135013
|
@ -74,7 +74,7 @@ class MultiGetExportPlugin extends DAV\ServerPlugin {
|
||||||
|
|
||||||
// Reduce the vcards into one string
|
// Reduce the vcards into one string
|
||||||
$output = array_reduce($responseXml->getResponses(), function ($vcf, $card) {
|
$output = array_reduce($responseXml->getResponses(), function ($vcf, $card) {
|
||||||
$vcf .= $card->getResponseProperties()[200]['{urn:ietf:params:xml:ns:carddav}address-data'];
|
$vcf .= $card->getResponseProperties()[200]['{urn:ietf:params:xml:ns:carddav}address-data'] . PHP_EOL;
|
||||||
return $vcf;
|
return $vcf;
|
||||||
}, '');
|
}, '');
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue