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
Basically the code is, if somehow you have an rrule with a malformed dtstart, between() execution will hang somewhere in the execution of _iter() as its var date value is:
{
day: NaN
hour: NaN
millisecond: 0
minute: NaN
month: NaN
second: NaN
year: NaN
}
EDIT: noticed after submitting that there is a PR (#62) that seems to address this
The text was updated successfully, but these errors were encountered:
The following code will make rrule hang (enter infinite loop i guess):
Basically the code is, if somehow you have an rrule with a malformed dtstart,
between()
execution will hang somewhere in the execution of_iter()
as itsvar date
value is:EDIT: noticed after submitting that there is a PR (#62) that seems to address this
The text was updated successfully, but these errors were encountered: