funsocietyirc / MMM-Wunderlist-Enhanced

Wunderlist-Enhanced module for the Magic Mirror.
16 stars 9 forks source link

Not loading new task #3

Open alberttwong opened 7 years ago

alberttwong commented 7 years ago

new tasks are not loading... in fact, I did a search on the code and I'm not sure when 'interval' is being used.

davericher commented 7 years ago

Inside fetcher.js

  case 'addLists':
    self.lists.forEach(function(currentValue, key) {
      if (self.config.lists.indexOf(currentValue.title) >= 0) {
        self.createFetcher(currentValue.id, currentValue.title, self.config.interval * 1000);
      }
    });
alberttwong commented 7 years ago

so I don't know why it's not reloading... I have to restart to get it to pull the new data

theloniuser commented 6 years ago

Anyone get a solution to this?