Skip to content

Commit

Permalink
Fixing standings issue during polls sync
Browse files Browse the repository at this point in the history
  • Loading branch information
CalebRose committed May 13, 2024
1 parent 2fe0641 commit e6a8dc6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion managers/StandingsManager.go
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ func GetCollegeStandingsMap(seasonID string) map[uint]structs.CollegeStandings {

standings := GetAllConferenceStandingsBySeasonID(seasonID)
for _, stat := range standings {
standingsMap[stat.ID] = stat
standingsMap[uint(stat.TeamID)] = stat
}

return standingsMap
Expand Down

0 comments on commit e6a8dc6

Please sign in to comment.