MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. antoinemosse
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.
    A
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 1
    • Posts 3
    • Groups 0

    antoinemosse

    @antoinemosse

    0
    Reputation
    1
    Profile views
    3
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    antoinemosse Unfollow Follow

    Latest posts made by antoinemosse

    • RE: Need to disable updatenotification from MagicMirror

      @antoinemosse i finally found it :) , it was the module ‘’ Alert’’ in config.js

      posted in Troubleshooting
      A
      antoinemosse
    • 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);
         },
        
      posted in Troubleshooting
      A
      antoinemosse
    • 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

      posted in Troubleshooting
      A
      antoinemosse