jclarke0000 / MMM-MyScoreboard

Module for MagicMirror to display today's scores for your favourite teams across multiple sports.
MIT License
65 stars 31 forks source link

Getting no data for MLB major league baseball #76

Open commo11 opened 1 year ago

commo11 commented 1 year ago
{
  module: "MMM-MyScoreboard",
  position: "bottom_left",
  classes: "default everyone",
  header: "Scoreboard",
  config: {
    showLeagueSeparators: true,
    colored: false,
    viewStyle: "stackedWithLogos",
    highlightWinners:true,
    showRankings: true,
    rolloverHours: 10,
    sports: [
      {league: "NHL", teams: ["CHI"] },
      {league: "NBA", teams: ["CHI"] },
      {league: "MLB", teams: ["CHW"] },
      {league: "NFL", teams: ["CHI"] },
            ]
           }
},

I don't really understand whats going on I am getting information from NBA but not MLB or NHL, I'm thinking it has something to do with SNET.js but not sure . Their was a White Soxs game today but nothing displayed.

Dresch360 commented 1 year ago

Quick (and dirty) solution - Change them all to ESPN instead of SNET

IN MMM-MYSCOREBOARD.JS //North American Leagues "NBA": {provider: "ESPN", logoFormat: "svg"}, "NHL": {provider: "ESPN", logoFormat: "svg"}, "NFL": {provider: "ESPN", logoFormat: "svg"}, "CFL": {provider: "ESPN", logoFormat: "svg"}, "MLB": {provider: "ESPN", logoFormat: "svg"}, "MLS": {provider: "ESPN", logoFormat: "url", homeTeamFirst: true}, "NCAAF": {provider: "ESPN", logoFormat: "url"}, "NCAAM": {provider: "ESPN", logoFormat: "url"}, "NCAAM_MM": {provider: "ESPN",logoFormat: "url"}, "NCAAW": {provider: "ESPN", logoFormat: "url"}, "WNBA": {provider: "ESPN", logoFormat: "url"},

IN ESPN.JS module.exports = {

PROVIDER_NAME: "ESPN",

LEAGUE_PATHS: {

//North American Leagues
"CFL": "football/cfl",
"MLS": "soccer/mls",
"NHL": "hockey/nhl",
"MLB": "baseball/mlb",
"NFL": "football/nfl",
"NCAAF": "football/college-football",
"NBA": "basketball/nba",
"WNBA": "basketball/wnba",
"NCAAM": "basketball/mens-college-basketball",
"NCAAM_MM": "basketball/mens-college-basketball",
"NCAAW" : "basketball/womens-college-basketball/",