Make sure we add new line between vcf groups exports

Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
This commit is contained in:
John Molakvoæ (skjnldsv) 2020-11-24 18:33:39 +01:00 committed by backportbot[bot]
parent c1e993333e
commit 8e262d9e59
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}, '');