After upgrading to 2.20.0, the default Weather module has stopped displaying. I finally had some time and rebuilt my MM, reusing the same config.js. Unfortunately, I’m still receiving the “Uncaught SyntaxError: Unexpected token” error on line 159 of weather.js. Here’s my config.js with personal data xxxx’d out:
module: "weather",
disabled: false,
position: "top_left",
classes: "daytime_scheduler",
config: {
initialLoadDelay: 3000,
weatherProvider: "openweathermap",
type: "current",
apiKey: "XXXX6abf89276a4b3cc00cfbcca7XXXX",
location: "XXXXXX, XX",
apiBase: "http://api.openweathermap.org/data/",
weatherEndpoint: "/weather",
locationID: 5574093,
degreeLabel: true,
updateInterval: 1800000,
//lat: "XX.XXXX70", //used for troubleshooting with other providers
//lon: "-1XX.XXXX10",
appendLocationNameToHeader: true,
showLocationAsHeader: true,
showWindDirection: true,
showHumidity: true,
}
},
Any ideas on what to do are appreciated in advance!