From d3975680624eb677904bcab75571fa823f58b614 Mon Sep 17 00:00:00 2001 From: Karsten Hassel Date: Thu, 21 Dec 2023 21:44:17 +0100 Subject: [PATCH] fix calendar config (#3299) params `fetchInterval` and `excludedEvents` were never used from single calendar config. Fixes #3297 --- CHANGELOG.md | 1 + modules/default/calendar/calendar.js | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0272b103..5e00edbc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/modules/default/calendar/calendar.js b/modules/default/calendar/calendar.js index 6f1c98d9..091d4ee1 100644 --- a/modules/default/calendar/calendar.js +++ b/modules/default/calendar/calendar.js @@ -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) {