mirror of https://github.com/dirtbags/moth.git
Friendler error message if you got the right answer
This commit is contained in:
parent
7e1c1cf937
commit
ad4cd6f700
|
@ -197,8 +197,8 @@ func (ctx *Instance) answerHandler(w http.ResponseWriter, req *http.Request) {
|
||||||
if err := ctx.AwardPoints(teamid, category, points); err != nil {
|
if err := ctx.AwardPoints(teamid, category, points); err != nil {
|
||||||
respond(
|
respond(
|
||||||
w, req, Error,
|
w, req, Error,
|
||||||
"Error awarding points",
|
"Cannot award points",
|
||||||
err.Error(),
|
"The answer is correct, but there was an error awarding points: %v", err.Error(),
|
||||||
)
|
)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue