From 943a6ee0852a1e2f602cc91c4849df28127710d5 Mon Sep 17 00:00:00 2001 From: ztimson Date: Sat, 27 Jun 2026 00:30:11 -0400 Subject: [PATCH] Fixing 24 hour forecast --- server/src/forecast.mjs | 1 + 1 file changed, 1 insertion(+) diff --git a/server/src/forecast.mjs b/server/src/forecast.mjs index 9e50a10..740b272 100644 --- a/server/src/forecast.mjs +++ b/server/src/forecast.mjs @@ -161,6 +161,7 @@ export async function get24HourForecast(currentSensors) { slot.heat_index = Math.round(heatIndex(slot.temperature, slot.humidity) * 100) / 100; slot.vapor_pressure_deficit = vaporPressureDeficit(slot.temperature, slot.humidity); slot.humidity_abs = absoluteHumidity(slot.temperature, slot.humidity); + Object.assign(slot, getWeatherCondition(slot)); } return slots;