Skip to content

Commit

Permalink
same fix but for laserball
Browse files Browse the repository at this point in the history
  • Loading branch information
spookybear0 committed Mar 29, 2024
1 parent a4439b3 commit 42d3834
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion handlers/game/game.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ async def game_index(request: Request, type: str, id: int) -> str:
raise exceptions.NotFound("Not found: Invalid game ID")


team_rosters = await get_team_rosters(game.entity_starts, game.entity_ends)
team_rosters = await get_team_rosters(await game.entity_starts.all(), await game.entity_ends.all())

scores = {
team: await game.get_team_score(team) for team in team_rosters.keys()
Expand Down

0 comments on commit 42d3834

Please sign in to comment.