Skip to content

Commit f676e7b

Browse files
authored
Merge pull request #3243 from caplod/fix-import
remove quotes on import
2 parents 8fe25e5 + c04307a commit f676e7b

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)