Environment
MagicMirror² version: develop
Which start option are you using?
node --run start
Are you using PM2?
No
Module
weather
Have you tried disabling other modules?
Have you searched if someone else has already reported the issue on the forum or in the issues?
What did you do?
Configuration
{
module: "weather",
//disabled: true,
position: "top_left",
config: {
weatherProvider: "openmeteo",
appendLocationNameToHeader: false,
fade: false,
ignoreToday: false,
type: "forecast",
location: "Berlin",
lat: 52.5012,
lon: 13.4789
}
}
Steps to reproduce the issue:
Start the weather forecast, wait a day, still on the same day as before.
What did you expect to happen?
Weather forecast gets updated each day
What actually happened?
On sunday it still thinks its thursday

Additional comments
Very likely the url for fetching the weather is only updated on startup of mm. So the start-data parameter is never updated, sicne the url stays the same for each call.
#initializeFetcher () {
const url = this.#getUrl();
...
#getUrl () {
return `${this.config.apiBase}/forecast?${this.#getQueryParameters()}`;
}
Maybe other fetcher users have the same problem?
Participation
Environment
MagicMirror² version: develop
Which start option are you using?
node --run start
Are you using PM2?
No
Module
weather
Have you tried disabling other modules?
Have you searched if someone else has already reported the issue on the forum or in the issues?
What did you do?
Configuration
Steps to reproduce the issue:
Start the weather forecast, wait a day, still on the same day as before.
What did you expect to happen?
Weather forecast gets updated each day
What actually happened?
On sunday it still thinks its thursday
Additional comments
Very likely the url for fetching the weather is only updated on startup of mm. So the start-data parameter is never updated, sicne the url stays the same for each call.
Maybe other fetcher users have the same problem?
Participation