1

Correction des données météo

This commit is contained in:
2025-11-27 21:35:05 +01:00
parent 7d8388252c
commit bcf7336315
369 changed files with 427 additions and 438 deletions

View File

@@ -42,6 +42,10 @@ async function fetchWeather(targetDateTime, config) {
if (!result) continue;
if (provider.name === "influxdb") {
return result;
}
mergeWeather(weather, result, provider.name);
const complete = WEATHER_FIELDS.every((field) => hasValue(weather[field]));