i am trying to display recurring events on the calendar, say like an event that triggers every week day between start and end dates will be displaying event details of that day on weekly view of full calendar Eg: event that triggers every sunday between 2019-11-21 00:00:00 to 2019-12-21 12:00:12, so event details are shown on calendar every sunday b/w those period,
i used the below link to display them so the code that compares the start dates is
if (theDate <= startDate) { return false; }
so the issue here is the event that start with 2019-11-24 00:00:00 is not displayed on calendar(2019-11-24),instead it displays from next week say like (2019-12-01) ,this works properly if i change the start date to 2019-11-21 00:00:01 am not sure why is it like this and what can i do to start displaying from this very matching date..i.e..2019-11-24 00:00:00