mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-29 04:29:41 +00:00
removes undefined objects from modules array, see issue #2382
This commit is contained in:
parent
c1d35b0f91
commit
61cf92c67a
@ -56,6 +56,7 @@ _This release is scheduled to be released on 2021-01-01._
|
|||||||
- update Node-ical 0.12.4 , fix invalid RRULE format in cal entries
|
- update Node-ical 0.12.4 , fix invalid RRULE format in cal entries
|
||||||
- fix package.json for optional electron dependency (2378)
|
- fix package.json for optional electron dependency (2378)
|
||||||
- update node-ical version again, 0.12.5, change RRULE fix (#2371, #2379)
|
- update node-ical version again, 0.12.5, change RRULE fix (#2371, #2379)
|
||||||
|
- remove undefined objects from modules array (#2382)
|
||||||
|
|
||||||
## [2.13.0] - 2020-10-01
|
## [2.13.0] - 2020-10-01
|
||||||
|
|
||||||
|
@ -502,7 +502,7 @@ var MM = (function () {
|
|||||||
modules = [];
|
modules = [];
|
||||||
for (var m in moduleObjects) {
|
for (var m in moduleObjects) {
|
||||||
var module = moduleObjects[m];
|
var module = moduleObjects[m];
|
||||||
modules[module.data.index] = module;
|
modules[m] = module;
|
||||||
}
|
}
|
||||||
|
|
||||||
Log.info("All modules started!");
|
Log.info("All modules started!");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user