Skip to content

Commit 7044c77

Browse files
Merge pull request #3262 from nextcloud/backport/3243/stable5.2
[stable5.2] remove quotes on import
2 parents da57b49 + 787e2bc commit 7044c77

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)