Skip to content

Commit d397568

Browse files
authored
fix calendar config (#3299)
params `fetchInterval` and `excludedEvents` were never used from single calendar config. Fixes #3297
1 parent a7af76b commit d397568

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ _This release is scheduled to be released on 2024-01-01._
4646
- Fix missing typeof in calendar module
4747
- Fix style issues after prettier update
4848
- Fix calendar test (#3291) by moving "Exdate check" from e2e to electron to run on a Thursday
49+
- Fix calendar config params `fetchInterval` and `excludedEvents` were never used from single calendar config (#3297)
4950

5051
## [2.25.0] - 2023-10-01
5152

modules/default/calendar/calendar.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,9 @@ Module.register("calendar", {
127127
maximumNumberOfDays: calendar.maximumNumberOfDays,
128128
pastDaysCount: calendar.pastDaysCount,
129129
broadcastPastEvents: calendar.broadcastPastEvents,
130-
selfSignedCert: calendar.selfSignedCert
130+
selfSignedCert: calendar.selfSignedCert,
131+
excludedEvents: calendar.excludedEvents,
132+
fetchInterval: calendar.fetchInterval
131133
};
132134

133135
if (typeof calendar.symbolClass === "undefined" || calendar.symbolClass === null) {

0 commit comments

Comments
 (0)