You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is causing particular problems with location when filled with a comma value. Calendars will only take the string up to the comma.
e.g. LOCATION:Alt-Moabit 140, 10557 Berlin, Germany will result in the calendar showing only Alt-Moabit 140
I've noticed that TEXT data is not escaped.
This is causing particular problems with location when filled with a comma value. Calendars will only take the string up to the comma.
e.g.
LOCATION:Alt-Moabit 140, 10557 Berlin, Germany
will result in the calendar showing onlyAlt-Moabit 140
Reference: https://icalendar.org/iCalendar-RFC-5545/3-3-11-text.html
One simple solution would be to escape these characters when they do not have a leading slash:
.replace(/([^\\])([\\,\n;\r])/g, "$1\\$2")
The text was updated successfully, but these errors were encountered: