Add missing return on not found for edit product
This commit is contained in:
parent
251080cbe5
commit
73497eb051
|
@ -144,6 +144,7 @@ func HandleUpdateProduct(w http.ResponseWriter, r *http.Request, params httprout
|
||||||
taxes := mustSliceAtoi(form.Tax.Selected)
|
taxes := mustSliceAtoi(form.Tax.Selected)
|
||||||
if ok := conn.MustGetBool(r.Context(), "select edit_product($1, $2, $3, $4, $5, $6)", slug, form.Name, form.Description, form.Price, taxes, form.Tags); !ok {
|
if ok := conn.MustGetBool(r.Context(), "select edit_product($1, $2, $3, $4, $5, $6)", slug, form.Name, form.Description, form.Price, taxes, form.Tags); !ok {
|
||||||
http.NotFound(w, r)
|
http.NotFound(w, r)
|
||||||
|
return
|
||||||
}
|
}
|
||||||
htmxRedirect(w, r, companyURI(company, "/products"))
|
htmxRedirect(w, r, companyURI(company, "/products"))
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue