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

@@ -86,7 +86,7 @@ func GetWeather(city *types.City, apiKey string) (types.Weather, error) {
// Format UNIX timestamp as 'YYYY-MM-DD'
utcTime := time.Unix(int64(weather.Current.Timestamp), 0)
weatherDate := &types.ZephyrDate{Time: utcTime.UTC()}
weatherDate := &types.ZephyrDate{Date: utcTime.UTC()}
// Set condition accordingly to weather description
var condition string