dashboard: fix solved number in summary table

This commit is contained in:
nemunaire 2019-01-23 18:29:52 +01:00
parent 5c5dadbee0
commit c9347f45e2

View File

@ -77,7 +77,7 @@ func GetTeamsStats(t *Team) (interface{}, error) {
}
} else {
if n, _ := exercice.IsSolved(); n > 0 {
solved += 1
solved += n
sLvl.Solved += 1
}
}