fix(controller): Call correct update method for StockNewsManager

This commit is contained in:
ChuckBuilds
2025-04-17 11:34:44 -05:00
parent 3221e2f7f0
commit ece38fee43

View File

@@ -74,7 +74,7 @@ class DisplayController:
# Could add timers per module later if needed
if self.weather: self.weather.get_weather() # weather update fetches data
if self.stocks: self.stocks.update_stock_data() # Correct method name
if self.news: self.news.update() # Assuming news manager has update()
if self.news: self.news.update_news_data() # Correct method name
if self.nhl: self.nhl.update()
# Clock updates itself during display typically