Skip to content

Commit

Permalink
fix calendar config (#3299)
Browse files Browse the repository at this point in the history
params `fetchInterval` and `excludedEvents` were never used from single
calendar config.

Fixes #3297
  • Loading branch information
khassel committed Dec 21, 2023
1 parent a7af76b commit d397568
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 3 additions & 1 deletion modules/default/calendar/calendar.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit d397568

Please sign in to comment.