fic: Fix color export when no red is present

This commit is contained in:
nemunaire 2021-09-04 20:52:41 +02:00
parent 63de5d64b1
commit b2c8b735f4
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ func ExportTeams(includeMembers bool) (ret map[string]exportedTeam, err error) {
}
ret[fmt.Sprintf("%d", team.Id)] = exportedTeam{
team.Name,
fmt.Sprintf("#%x", team.Color),
fmt.Sprintf("#%06x", team.Color),
rank[team.Id],
points,
members,