A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
Read the statement by Michael Teeuw here.
.resume() is executed whenever even with wrong lockString?
-
@Sean in module1, what is this.hidden?
-
@sdetweil said in .resume() is executed whenever even with wrong lockString?:
@Sean in module1, what is this.hidden?
https://github.com/MichMich/MagicMirror/blob/master/modules/README.md#available-module-instance-properties
It’s one of default module attributes. (But in this case, useless.) -
@Sean thanks. Forgot these attributes
-
@Sean I reported the bug in your issue
show: function (speed, callback, options) { if (typeof callback === "object") { options = callback; callback = function () { }; } callback = callback || function () { }; options = options || {}; this.resume(); // < --- should not be done, MM.showModule will call back if allowed MM.showModule(this, speed, callback, options); }
-
@Sean i see they have developed and accepted a fix for this. for next release
-
Yes. I fix it with @eouia