Hello :) ,
My MagicMirror has been running smooth for about two months.
Just recently, my Newfeed and Bring module have stopped updating.
When i use “pm2 log” i get the following error’s, but only from the Bring module.
/home/pi/.pm2/logs/mm-error.log last 15 lines:
0|mm | [19.06.2022 14:36.21.701] [ERROR] If you think this really is an is sue, please open an issue on GitHub: https://github.com/MichMich/MagicMirror/iss ues
0|mm | [19.06.2022 14:50.21.697] [ERROR] Whoops! There was an uncaught exc eption...
0|mm | [19.06.2022 14:50.21.699] [ERROR] TypeError: Cannot read properties of undefined (reading 'locale')
0|mm | at BringClient._init (/home/pi/MagicMirror/modules/MMM-Bring/Br ingClient.js:28:18)
0|mm | at new BringClient (/home/pi/MagicMirror/modules/MMM-Bring/Brin gClient.js:23:14)
0|mm | at Class.initClient (/home/pi/MagicMirror/modules/MMM-Bring/nod e_helper.js:49:23)
0|mm | at Class.getList (/home/pi/MagicMirror/modules/MMM-Bring/node_h elper.js:39:18)
0|mm | at Class.socketNotificationReceived (/home/pi/MagicMirror/modul es/MMM-Bring/node_helper.js:18:22)
0|mm | at Socket.<anonymous> (/home/pi/MagicMirror/js/node_helper.js:1 09:11)
0|mm | at Socket.emit (node:events:394:28)
0|mm | at Socket.emitUntyped (/home/pi/MagicMirror/node_modules/socket .io/dist/typed-events.js:69:22)
0|mm | at /home/pi/MagicMirror/node_modules/socket.io/dist/socket.js:4 66:39
0|mm | at processTicksAndRejections (node:internal/process/task_queues :78:11)
0|mm | [19.06.2022 14:50.21.702] [ERROR] MagicMirror will not quit, but it might be a good idea to check why this happened. Maybe no internet connection?
0|mm | [19.06.2022 14:50.21.704] [ERROR] If you think this really is an is sue, please open an issue on GitHub: https://github.com/MichMich/MagicMirror/iss ues
The config i have used for my newsfeed is:
{
module: "newsfeed",
position: "middle_center", //of op de lower_third
config: {
feeds: [
{
title: "Nu.nl",
url: "https://nu.nl/rss/Algemeen"
}
],
showSourceTitle: false,
showDescription: true,
showPublishDate: false,
broadcastNewsFeeds: false,
broadcastNewsUpdates: false,
ignoreOldItems: true,
updateInterval: 20000, // 20 seconden
ignoreOlderThan: 21600000, // Dit is 6 uur
reloadInterval: 780000, // 13 minuten
}
What am i missing?