From 9c43a417bd36242956e086a37b0fa1165aa3e579 Mon Sep 17 00:00:00 2001 From: ChuckBuilds <33324927+ChuckBuilds@users.noreply.github.com> Date: Fri, 2 May 2025 10:50:55 -0500 Subject: [PATCH] feat: Add NCAA Football scoreboard support --- src/display_controller.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/display_controller.py b/src/display_controller.py index 7a8a24fa..38f71703 100644 --- a/src/display_controller.py +++ b/src/display_controller.py @@ -346,7 +346,7 @@ class DisplayController: if self.nfl_live and self.nfl_live.live_games: logger.debug("NFL live games available") - return True, 'nfl_live' + return True, 'nfl' if self.nhl_live and self.nhl_live.live_games: return True, 'nhl' @@ -360,11 +360,11 @@ class DisplayController: if 'ncaa_fb_scoreboard' in self.config and self.config['ncaa_fb_scoreboard'].get('enabled', False): if self.ncaa_fb_live and self.ncaa_fb_live.live_games: logger.debug("NCAA FB live games available") - return True, 'ncaa_fb_live' + return True, 'ncaa_fb' # Add more sports checks here (e.g., MLB, Soccer) if 'mlb' in self.config and self.config['mlb'].get('enabled', False): if self.mlb_live and self.mlb_live.live_games: - return True, 'mlb_live' + return True, 'mlb' return False, None