Skip to content
Snippets Groups Projects
Unverified Commit e165dcbe authored by Christoph Wurst's avatar Christoph Wurst Committed by GitHub
Browse files

Merge pull request #24357 from nextcloud/fix/vcf-export-group-multiline

Make sure we add new line between vcf groups exports
parents 82864ef8 e18899a0
No related branches found
No related tags found
No related merge requests found
......@@ -74,7 +74,7 @@ class MultiGetExportPlugin extends DAV\ServerPlugin {
// Reduce the vcards into one string
$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;
}, '');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment