fix calendar config (#3299)

params `fetchInterval` and `excludedEvents` were never used from single
calendar config.

Fixes #3297
This commit is contained in:
Karsten Hassel 2023-12-21 21:44:17 +01:00 committed by GitHub
parent a7af76b619
commit d397568062
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View file

@ -46,6 +46,7 @@ _This release is scheduled to be released on 2024-01-01._
- Fix missing typeof in calendar module
- Fix style issues after prettier update
- Fix calendar test (#3291) by moving "Exdate check" from e2e to electron to run on a Thursday
- Fix calendar config params `fetchInterval` and `excludedEvents` were never used from single calendar config (#3297)
## [2.25.0] - 2023-10-01

View file

@ -127,7 +127,9 @@ Module.register("calendar", {
maximumNumberOfDays: calendar.maximumNumberOfDays,
pastDaysCount: calendar.pastDaysCount,
broadcastPastEvents: calendar.broadcastPastEvents,
selfSignedCert: calendar.selfSignedCert
selfSignedCert: calendar.selfSignedCert,
excludedEvents: calendar.excludedEvents,
fetchInterval: calendar.fetchInterval
};
if (typeof calendar.symbolClass === "undefined" || calendar.symbolClass === null) {