Skip to content

Commit 787e2bc

Browse files
caplodbackportbot-nextcloud[bot]
authored andcommittedMar 6, 2023
remove quotes on import
to comply with https://www.rfc-editor.org/rfc/rfc6350#section-5 Signed-off-by: Stefan Mielke <stefan@tan3.de>
1 parent da57b49 commit 787e2bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/store/addressbooks.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -421,7 +421,7 @@ const actions = {
421421

422422
// Get vcard string
423423
try {
424-
const vData = contact.vCard.toString()
424+
const vData = contact.toStringStripQuotes()
425425
// push contact to server and use limit
426426
requests.push(limit(() => contact.addressbook.dav.createVCard(vData)
427427
.then((response) => {

0 commit comments

Comments
 (0)
Please sign in to comment.