Skip to content

Commit

Permalink
fix: replace name by login
Browse files Browse the repository at this point in the history
  • Loading branch information
MikaelVallenet committed May 15, 2023
1 parent d5c01bd commit 32410d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion go/cmd/pathwar/admin.go
Original file line number Diff line number Diff line change
Expand Up @@ -845,7 +845,7 @@ func adminSeasonStats() *ffcli.Command {
fmt.Println(godev.PrettyJSON(ret))
} else {
var buf [][]string
buf = append(buf, []string{"rank", "mail", "name", "team_name", "score", "challenges_solved"})
buf = append(buf, []string{"rank", "mail", "login", "team_name", "score", "challenges_solved"})
for _, stat := range ret.Stats {
buf = append(buf, []string{stat.Rank, stat.Mail, stat.Name, stat.TeamName, stat.Score, stat.ChallengesSolved})
}
Expand Down

0 comments on commit 32410d3

Please sign in to comment.