Fixed cache data violation bug

This commit is contained in:
2025-06-18 08:44:52 +02:00
parent 9e419ec7bf
commit 87605024c7
5 changed files with 37 additions and 21 deletions

View File

@@ -43,7 +43,7 @@ type forecastRes struct {
func getForecastEntity(dailyForecast dailyRes) types.ForecastEntity {
// Format UNIX timestamp as 'YYYY-MM-DD'
utcTime := time.Unix(int64(dailyForecast.Timestamp), 0)
weatherDate := &types.ZephyrDate{Time: utcTime.UTC()}
weatherDate := &types.ZephyrDate{Date: utcTime.UTC()}
// Set condition accordingly to weather description
var condition string