Read the statement by Michael Teeuw here.
Default Calendar Stopped Showing Recurring Events
-
@Alvinger i looked at your code… it fixes the results, but not the cause… I will look at resolving the cause the cause wastes storage and cycles
-
@sdetweil It fixes the result while also retaining backward compatibility. From my viewpoint the cause is that calendarfetcher.js not only fetches but also filters. It should just fetch and let calendar.js do the filtering. But that would require substantial changes to both files. My “fix” is just a few lines of code.
But I am all for fixing the cause! -
@Alvinger yeh, I agree on the ‘right’ fix, but don’t want to rewrite the whole thing…
the ‘cause’ is that the rule.between(from date/time is set to yesterday (when NOT looking for pastEvents)
so rrule dutifully returns events that could occur yesterday or before now today… .
if not pastEvetns, from should be NOW… -
@sdetweil Aah, missed that one. But you still have to address the issue with calendarfetcher returning “only” maximumEntries even if broadcastPastEvents is set.
-
@Alvinger yes, i like your solution there