diff --git a/handlers/groups.go b/handlers/groups.go index 736f7390..f42593b9 100644 --- a/handlers/groups.go +++ b/handlers/groups.go @@ -62,7 +62,7 @@ func apiGroupUpdateHandler(w http.ResponseWriter, r *http.Request) { vars := mux.Vars(r) group := core.SelectGroup(utils.ToInt(vars["id"])) if group == nil { - sendErrorJson(errors.New("service not found"), w, r) + sendErrorJson(errors.New("group not found"), w, r) return } decoder := json.NewDecoder(r.Body)