From 6914f068a1b043db1aaf1cae91aa28dba87487be Mon Sep 17 00:00:00 2001 From: ChuckBuilds <33324927+ChuckBuilds@users.noreply.github.com> Date: Fri, 18 Apr 2025 11:20:17 -0500 Subject: [PATCH] Fix NHL display modes not being cycled through - Add NHL display modes to available_modes list in DisplayController initialization --- src/display_controller.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/display_controller.py b/src/display_controller.py index 4667b658..903898a2 100644 --- a/src/display_controller.py +++ b/src/display_controller.py @@ -53,6 +53,8 @@ class DisplayController: if self.weather: self.available_modes.extend(['weather_current', 'weather_hourly', 'weather_daily']) if self.stocks: self.available_modes.append('stocks') if self.news: self.available_modes.append('stock_news') + + # Add NHL display modes if enabled if nhl_enabled: if self.nhl_live: self.available_modes.append('nhl_live') if self.nhl_recent: self.available_modes.append('nhl_recent')