From c1277136b7e8183c55640639abd5d311130b2804 Mon Sep 17 00:00:00 2001 From: Ken Murchison Date: Wed, 18 Oct 2023 16:44:24 -0400 Subject: [PATCH] jmap_contact.c: libicalvcard will escape comma in JSCOMPS separator --- imap/jmap_contact.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/imap/jmap_contact.c b/imap/jmap_contact.c index e36113cd98..cef9431a05 100644 --- a/imap/jmap_contact.c +++ b/imap/jmap_contact.c @@ -9069,8 +9069,6 @@ static vcardproperty *_jscomps_to_vcard(struct jmap_parser *parser, json_t *obj, /* Add separator entry to JSCOMPS */ sep = val; buf_setcstr(&buf, sep); - buf_replace_all(&buf, ";", "\\;"); - buf_replace_all(&buf, ",", "\\,"); entry = vcardstrarray_new(2); vcardstrarray_append(entry, "s"); vcardstrarray_append(entry, buf_cstring(&buf));