centered team logos in odds ticker and removed dynamic display duration

This commit is contained in:
Chuck
2025-07-21 16:42:24 -05:00
parent 49378f79cf
commit 8dccebff01
11 changed files with 57 additions and 29 deletions

View File

@@ -418,6 +418,12 @@ class BaseNCAABaseballManager:
home_record = home_team.get('records', [{}])[0].get('summary', '') if home_team.get('records') else ''
away_record = away_team.get('records', [{}])[0].get('summary', '') if away_team.get('records') else ''
# Don't show "0-0" records - set to blank instead
if home_record == "0-0":
home_record = ''
if away_record == "0-0":
away_record = ''
is_favorite_game = (home_abbr in self.favorite_teams or away_abbr in self.favorite_teams)
if is_favorite_game: