updates to caching

This commit is contained in:
Chuck
2025-07-21 21:02:19 -05:00
parent 2516a06ad3
commit 3a450b717a
7 changed files with 36 additions and 16 deletions

View File

@@ -73,7 +73,7 @@ class WeatherManager:
return
# Try to get cached data first
cached_data = self.cache_manager.get_cached_data('weather')
cached_data = self.cache_manager.get('weather')
if cached_data:
self.weather_data = cached_data.get('current')
self.forecast_data = cached_data.get('forecast')