Read the statement by Michael Teeuw here.
MMM-MyStanding not updating within MMM-Carousel
-
MMM-MyScorboard and MMM-MyStandings configured within MMM-Carousel as ‘positional’ The bottom_left rotates these two modules.
not sure if MMM-Carousel plays into this, just wanted to add
I see in the server output the fetch on regular intervals
[2025-07-22 11:24:18.047] ^[[44m[DEBUG]^[[49m [MMM-MyStandings] https://site.api.espn.com/apis/v2/sports/baseball/mlb/standings?level=3&sort=gamesbehind:asc,winpercent:desc fetched
I have manually pulled the data and it looks correct, however the data on the screen is not updated. If I refresh the screen r, the data is updated.
-
@khrusher can you try this temp fix
https://forum.magicmirror.builders/post/127456 -
Update applied, ill know tomorrow if it worked…thanks.
-
has not updated since patch and restart. I think ill try without carousel
-
ill check tomorrow
-
without MMM-Carousel and with the manual updates in the referenced item above, MMM-MyStandings updated properly.
MMM-Carousel was swapping MMM-MyStandings and MMM-MyScoreboard. all this time that standings was not updating, MMM-MyScoreboard was. Scores were updated along with the live game action.
Feels like an issue combining MMM-Carousel and MMM-MyStandings, maybe some kind of notification crossup
-
@khrusher can you show the config of the two modules?
what is the carousel rotation rate?the standings default is 1 minute for multiple teams…
-
sure…
{ "module": "MMM-Carousel", "position":"bottom_bar", "showPageIndicators":true, "config": { "transitionInterval": 20000, "mode": "positional", "bottom_left": { "enabled": true, "ignoreModules": [] } } }, { module: "MMM-MyScoreboard", position: "bottom_left", classes: "default everyone", config: { showLeagueSeparators: true, colored: true, viewStyle: "smallLogos", rolloverHours: 11, teams: ["BOS"], sports: [ { league: "NHL", }, { league: "MLB", teams: ["BOS"] }, { league: "NFL", teams: ["NE"] } ] } }, { "module":"MMM-MyStandings", "position":"bottom_left", "config":{ "rotateInterval":2 * 60 * 1000, "sports":[ { "league":"MLB", "groups":[ "American League East" ] }, { "league":"NFL", "groups":[ "ACF East" ] } ] } },
-
@khrusher so carousel rotates every 20 (20*1000 milliseconds) seconds, and standings rotates every 2 minutes (2*60*1000)
Standings does not provide the suspend/resume methods, so it doesn’t know when its hidden or visible.
so it will keep rotating while hidden -
is this breaking the update notification? is there something I can do? Or is the lack of suspend/resume methods ultimately a show stopper here for now?