I’ve just updated from 2.28 to 2.30 using the script, and it looks to have broken the default weather module.
I run it twice on my display, and one (top-left) is now giving “invalid date” for the date and NaN for the temperature.
The other (top-right) is not showing up at all.
This is the config snippet for their config (api key redacted):
{
module: "weather",
position: "top_left",
config: {
type: "current",
location: "Crawley",
locationID: "2652053", //ID from http://bulk.openweathermap.org/sample/city.list.json.gz; unzip the gz file and find your city
apiKey: "redacted",
units: "metric",
degreeLabel: true,
showHumidity: true,
tableClass: "medium"
}
},
{
module: "weather",
position: "top_right",
config: {
type: "forecast",
appendLocationNameToHeader: false,
location: "Crawley",
locationID: "2652053", //ID from http://bulk.openweathermap.org/sample/city.list.json.gz; unzip the gz file and find your city
apiKey: "redacted",
units: "metric",
degreeLabel: true,
fade: false,
colored: true,
tableClass: "forecast"
}
},
MagicMirror-error.log shows this:
[2025-01-05 12:50:19.350] ^[[31m[ERROR]^[[39m ^[[31mError fetching feed: Error fetching feed: 401^[[39m
[2025-01-05 12:51:17.281] ^[[31m[ERROR]^[[39m ^[[31mError fetching feed: Error fetching feed: 401^[[39m
[2025-01-05 12:52:17.295] ^[[31m[ERROR]^[[39m ^[[31mError fetching feed: Error fetching feed: 401^[[39m
[2025-01-05 12:53:16.885] ^[[31m[ERROR]^[[39m ^[[31mError fetching feed: Error fetching feed: 401^[[39m
[2025-01-05 12:54:16.947] ^[[31m[ERROR]^[[39m ^[[31mError fetching feed: Error fetching feed: 401^[[39m
[2025-01-05 12:55:16.976] ^[[31m[ERROR]^[[39m ^[[31mError fetching feed: Error fetching feed: 401^[[39m
[2025-01-05 12:56:16.907] ^[[31m[ERROR]^[[39m ^[[31mError fetching feed: Error fetching feed: 401^[[39m
[2025-01-05 12:57:16.889] ^[[31m[ERROR]^[[39m ^[[31mError fetching feed: Error fetching feed: 401^[[39m
That’s after stopping the mirror and clearing the log. But looking in the old (massive) log, that error has been there for months.
Is this a known issue, or anything else I can provide to help fix it?
It’s running on a Pi3 (fully updated with apt), and the Mirror upgrade was done using the recommended script.
Rebooting and restarting doesn’t help either, to eliminate a basic…