Skip to content

Commit b1f3f5d

Browse files
authored
Merge pull request #24443 from nextcloud/backport/24357/stable20
[stable20] Make sure we add new line between vcf groups exports
2 parents c1e9933 + 8e262d9 commit b1f3f5d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/dav/lib/CardDAV/MultiGetExportPlugin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ public function httpReport(RequestInterface $request, ResponseInterface $respons
7474

7575
// Reduce the vcards into one string
7676
$output = array_reduce($responseXml->getResponses(), function ($vcf, $card) {
77-
$vcf .= $card->getResponseProperties()[200]['{urn:ietf:params:xml:ns:carddav}address-data'];
77+
$vcf .= $card->getResponseProperties()[200]['{urn:ietf:params:xml:ns:carddav}address-data'] . PHP_EOL;
7878
return $vcf;
7979
}, '');
8080

0 commit comments

Comments
 (0)