Skip to content

Commit

Permalink
always let year end recaps through
Browse files Browse the repository at this point in the history
  • Loading branch information
dtcarls authored Jan 2, 2024
1 parent 4dda33b commit e1cfa19
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gamedaybot/espn/espn_bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ def espn_bot(function):
broadcast_message = None

# always let init and broadcast run
if function not in ["init", "broadcast"] and league.scoringPeriodId > len(league.settings.matchup_periods):
if function not in ["init", "broadcast", "win_matrix", "trophy_recap"] and league.scoringPeriodId > len(league.settings.matchup_periods):
logger.info("Not in active season")
return

Expand Down Expand Up @@ -223,4 +223,4 @@ def espn_bot(function):
from gamedaybot.espn.scheduler import scheduler

espn_bot("init")
scheduler()
scheduler()

0 comments on commit e1cfa19

Please sign in to comment.