adamgibbons / ics

iCalendar (ics) file generator for node.js
ISC License
732 stars 155 forks source link

Fix DIR format according to the RFC-5545 #217

Closed nimchukr closed 2 years ago

nimchukr commented 2 years ago

dirparam quote fix

Context

Hi there:) I had a chance to work with your library and found that users with dir property aren't added as attendees to the native mac os calendar. So I've found that there is a missing quote.

According to the DIR RFC the dir format should be next: dirparam = "DIR" "=" DQUOTE uri DQUOTE

For example: ORGANIZER;DIR="ldap://example.com:6666":mailto:jimdo@example.com

So I started to play with generated ics files and it was confirmed. When I add quotes I can see invitees, when remove I can't

Fix