Got this error when using colons and double quotes in a "note"-reply in Google Calendar.
ATTENDEE;ROLE=REQ-PARTICIPANT;CN="Test";X-RESPONSE-COMMENT="test"quoted"string:with-colon":MAILTO:test@example.com
parses as:
{
params: {
ROLE: 'REQ-PARTICIPANT',
CN: '"Test"',
'X-RESPONSE-COMMENT': '"test"'
},
val: 'MAILTO:test@example.com'
}
kewisch/ical.js correctly parses and unquotes the value into test"quoted"string:with-colon
Got this error when using colons and double quotes in a "note"-reply in Google Calendar.
ATTENDEE;ROLE=REQ-PARTICIPANT;CN="Test";X-RESPONSE-COMMENT="test"quoted"string:with-colon":MAILTO:test@example.comparses as:
kewisch/ical.js correctly parses and unquotes the value into
test"quoted"string:with-colon