Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated ical library to latest version #2048

Merged
merged 12 commits into from
Jun 22, 2020
Prev Previous commit
Merge branch 'develop' into issue_1926
  • Loading branch information
rejas committed Jun 20, 2020
commit 9831f81b6e76e83f6f744b0bba5e3cd3052c5727
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ _This release is scheduled to be released on 2020-07-01._
- Support multiple instances of calendar module with different config [#1109](/~https://github.com/MichMich/MagicMirror/issues/1109)
- Fix the use of "maxNumberOfDays" in the module "weatherforecast" [#2018](/~https://github.com/MichMich/MagicMirror/issues/2018)
- Throw error when check_config fails [#1928](/~https://github.com/MichMich/MagicMirror/issues/1928)
- Bug fix related to 'maxEntries' not displaying Calendar events. [#2050](/~https://github.com/MichMich/MagicMirror/issues/2050)
- Updated ical library to latest version [#1926](/~https://github.com/MichMich/MagicMirror/issues/1926)

## [2.11.0] - 2020-04-01
Expand Down
2 changes: 1 addition & 1 deletion modules/default/calendar/calendarfetcher.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const ical = require("ical");
const moment = require("moment");
const request = require("request");

const CalendarFetcher = function (url, reloadInterval, excludedEvents, maximumEntries, maximumNumberOfDays, auth, includePastEvents) {
const CalendarFetcher = function (url, reloadInterval, excludedEvents, maximumNumberOfDays, auth, includePastEvents) {
const self = this;

let reloadTimer = null;
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.