@antoinemosse i finally found it :) , it was the module ‘’ Alert’’ in config.js
A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
Read the statement by Michael Teeuw here.
A
Latest posts made by antoinemosse
-
RE: Need to disable updatenotification from MagicMirror
-
RE: Need to disable updatenotification from MagicMirror
@sdetweil Thx, but it does not work. i’ve added this entry in updatenotification.js n but continue to receive the notifications :(
/* Magic Mirror
-
Module: UpdateNotification
-
By Michael Teeuw https://michaelteeuw.nl
-
MIT Licensed.
*/
Module.register(“updatenotification”, {
defaults: {
updateInterval: 10 * 60 * 1000, // every 10 minutes
refreshInterval: 24 * 60 * 60 * 1000, // one day
ignoreModules: [“MMM-GoogleAssistant”,“MMM-Assistant2Display”]
},disable: true, suspended: true, moduleList: {}, start: function () { var self = this; Log.log("Start updatenotification"); setInterval(() => { self.moduleList = {}; self.updateDom(2); }, self.config.refreshInterval); },
-
-
Need to disable updatenotification from MagicMirror
Hi,
i want to disable the updates of the modules. i have modified the value in updatenotification.js ( suspended: true, )from /home/pi/MagicMirror/modules/default/updatenotification folder but still get the update messages . did i miss something ? :)
Thank youn advance