adamgibbons / ics

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

Sequence zero bug #225

Closed employee451 closed 2 years ago

employee451 commented 2 years ago

Explanation

Setting the sequence property to the number 0 results in a created event that doesn't have SEQUENCE. The reason for this is that the library removes falsey values from the ICS file, and 0 is a falsey value.

This PR addresses the issue by removing undefined values instead of falsey values.

Code changes

employee451 commented 2 years ago

@adamgibbons Are you able to take a look at this?🙏 It is blocking for my team