Skip to content

Commit c04307a

Browse files
committed
remove quotes on import
to comply with https://www.rfc-editor.org/rfc/rfc6350#section-5 Signed-off-by: Stefan Mielke <[email protected]>
1 parent 3659d86 commit c04307a

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)