MagicMirrorOrg / MagicMirrorOrg/MagicMirror
[Bug] Weather initialLoadDelay is ignored by the server-side Open-Meteo provider
@KristjanESPERANTO is already working on this.
Since Sep 2, 2026.
- Dominant language
- JavaScript
- Stars
- 23.9k
- Forks
- 4.6k
- Avg merge
- 17h 31m
- Merged PRs (30d)
- 25
Description
Environment
MagicMirror²: 2.37.0
Weather provider: Open-Meteo
Hardware: Raspberry Pi 4
OS: Debian 13
Architecture: ARM64
Electron: 42.5.2
Which start option are you using?
node --run start
Are you using PM2?
Yes
Module
weather
Have you tried disabling other modules?
- Yes
- No
Have you searched if someone else has already reported the issue on the forum or in the issues?
- Yes
What did you do?
Configuration
{
module: "weather",
config: {
weatherProvider: "openmeteo",
type: "current",
initialLoadDelay: 0
}
},
{
module: "weather",
config: {
weatherProvider: "openmeteo",
type: "hourly",
initialLoadDelay: 15000
}
},
{
module: "weather",
config: {
weatherProvider: "openmeteo",
type: "forecast",
initialLoadDelay: 30000
}
}
<!-- Paste relevant code here -->
Steps to reproduce the issue:
I use three Open-Meteo weather instances: current, hourly, and forecast. They are configured with different delays so their first requests do not all occur simultaneously.
What did you expect to happen?
The first requests should begin at approximately:
- Current: immediately
- Hourly: after 15 seconds
- Forecast: after 30 seconds
Subsequent requests should continue according to each instance’s updateInterval.
What actually happened?
All three providers begin fetching at nearly the same time.
When Open-Meteo or the network is slow, the three instances also time out and retry together. On my Raspberry Pi, the log showed all three timeout messages at nearly identical timestamps.
Additional comments
The weather module includes initialLoadDelay in the configuration sent through INIT_WEATHER, but the server-side Open-Meteo provider starts HTTPFetcher immediately.
HTTPFetcher.startPeriodicFetch() immediately calls fetch(), so the configured delay is never applied.
Participation
- I am willing to submit a pull request for this change.
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Assessment
This issue has not been assessed yet.