Read the statement by Michael Teeuw here.
MMM-soccer v2
-
@lavolp3
i tried to start my mirror n server mode, but than i got these errors…17.03.2021 20:05.53.544] [ERROR] WARNING! Could not load config file. Starting with default configuration. Error found: Error: The module '/home/pi/MagicMirror/modules/MMM-Navigate/node_modules/epoll/build/Release/epoll.node' was compiled against a different Node.js version using NODE_MODULE_VERSION 76. This version of Node.js requires NODE_MODULE_VERSION 83. Please try re-compiling or re-installing the module (for instance, using `npm rebuild` or `npm install`). [17.03.2021 20:05.53.547] [LOG] Loading module helpers ... [17.03.2021 20:05.53.550] [LOG] No helper found for module: alert. [17.03.2021 20:05.53.551] [LOG] Initializing new module helper ... [17.03.2021 20:05.53.551] [LOG] Module helper loaded: updatenotification [17.03.2021 20:05.53.552] [LOG] No helper found for module: clock. [17.03.2021 20:05.53.558] [ERROR] Whoops! There was an uncaught exception... [17.03.2021 20:05.53.563] [ERROR] Error: The module '/home/pi/MagicMirror/modules/MMM-Navigate/node_modules/epoll/build/Release/epoll.node' was compiled against a different Node.js version using NODE_MODULE_VERSION 76. This version of Node.js requires NODE_MODULE_VERSION 83. Please try re-compiling or re-installing the module (for instance, using `npm rebuild` or `npm install`). at Object.Module._extensions..node (internal/modules/cjs/loader.js:1122:18) at Module.load (internal/modules/cjs/loader.js:928:32) at Function.Module._load (internal/modules/cjs/loader.js:769:14) at Module.require (internal/modules/cjs/loader.js:952:19) at require (internal/modules/cjs/helpers.js:88:18) at bindings (/home/pi/MagicMirror/modules/MMM-Navigate/node_modules/bindings/bindings.js:112:48) at /home/pi/MagicMirror/modules/MMM-Navigate/node_modules/epoll/epoll.js:7:31 at Object.<anonymous> (/home/pi/MagicMirror/modules/MMM-Navigate/node_modules/epoll/epoll.js:15:3) at Module._compile (internal/modules/cjs/loader.js:1063:30) at Object.Module._extensions..js (internal/modules/cjs/loader.js:1092:10)
i reinstalled in the following order:
the module “navigate”, npm, node.js, mirror software,
but it doen’t change anything. i have to check this before i can try further…with npm run start the mirror works well…
-
here is the output from the console
MMM-soccer: "received a Socket Notification: MATCHES" MMM-soccer.js:432 MMM-soccer: "Calculating Team Display Boundaries" MMM-soccer.js:432 MMM-soccer: "Focus on Team" MMM-soccer.js:432 MMM-soccer: "Finding focus team for table..." MMM-soccer.js:432 MMM-soccer: "Focus Team found: FC Bayern München" MMM-soccer.js:432 MMM-soccer: "No Focus Team found! Please check your entry!" ReferenceError: numberOfNextMatches is not defined at Class.prepareMatches (MMM-soccer.js:232) at Class.getTemplateData (MMM-soccer.js:182) at module.js:89 at new Promise (<anonymous>) at Class.getDom (module.js:86) at main.js:114 at new Promise (<anonymous>) at updateDom (main.js:113) at Object.updateDom (main.js:551) at Class.updateDom (module.js:364)
Why did it say, that no focus team has found? It is highlighted in “league mode”
Furthermore i did not edit the MMM-soccer.js. so i don’t have any idea, why numberOfNextMatches is not defined -
i saw, that the focus for table was not found. thats correct. it is only highlighted in the current matchday…
-
@matze86 ok I’ll check that error.
-
@matze86 OK i pushed a fix.
Please do agit pull
and let me know if it works better now. -
-
@matze86 yeah another issue i have just now realized. Give me a bit of time.
-
@lavolp3 should be fixed now. Only one css line
Again, please do agit pull
-
@lavolp3
I fixed it by my ownI can send you the css of you want
Is ist possible to delete the last games of my team?
I only found a Solution to reduce it from 3 to 2 , by editing line 247 (changing the number in bracktes), but each other Number than 3 will only reduce it to 2 Games
-
@matze86 Change line 249 in MMM-soccer.js from
for (var i = index - 1; i < filteredMatches.length; i++) { nextMatches.push(filteredMatches[i]); }
to
for (var i = index; i < filteredMatches.length; i++) { nextMatches.push(filteredMatches[i]); }
(Remove the “- 1”)