remove dynamic duration calculation from startup loop

This commit is contained in:
Chuck
2025-07-27 10:08:03 -05:00
parent be50fb86d7
commit aef8b3b6cc
2 changed files with 7 additions and 7 deletions

View File

@@ -476,7 +476,8 @@ class DisplayController:
if self.youtube: self.youtube.update()
if self.text_display: self.text_display.update()
if self.of_the_day: self.of_the_day.update(time.time())
if self.news_manager: self.news_manager.fetch_news_data()
# News manager fetches data when displayed, not during updates
# if self.news_manager: self.news_manager.fetch_news_data()
# Update NHL managers
if self.nhl_live: self.nhl_live.update()