summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristoph Wurst <ChristophWurst@users.noreply.github.com>2023-03-16 13:51:59 +0100
committerGitHub <noreply@github.com>2023-03-16 13:51:59 +0100
commit7044c7722a19361f5672d3e813e6eaee26c10a68 (patch)
treeb07903f504a724976f26fba364c477b063486c6a
parentda57b499df1e77ccaf6ac6fa72df2f0066026a97 (diff)
parent787e2bcc6d3374393a681898022528dd793f656c (diff)
Merge pull request #3262 from nextcloud/backport/3243/stable5.2
[stable5.2] remove quotes on import
-rw-r--r--src/store/addressbooks.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/store/addressbooks.js b/src/store/addressbooks.js
index f338227e..e2564e77 100644
--- a/src/store/addressbooks.js
+++ b/src/store/addressbooks.js
@@ -421,7 +421,7 @@ const actions = {
// Get vcard string
try {
- const vData = contact.vCard.toString()
+ const vData = contact.toStringStripQuotes()
// push contact to server and use limit
requests.push(limit(() => contact.addressbook.dav.createVCard(vData)
.then((response) => {