Handle errors for Commit and Rollback in campsite/types/option

This commit is contained in:
jordi fita mas 2023-10-13 18:57:46 +02:00
parent 7fc87b5cb5
commit a174837aea
1 changed files with 6 additions and 2 deletions

View File

@ -208,9 +208,13 @@ func processOptionForm(w http.ResponseWriter, r *http.Request, user *auth.User,
tx := conn.MustBegin(r.Context())
if err := act(r.Context(), tx); err == nil {
tx.Commit(r.Context())
if err := tx.Commit(r.Context()); err != nil {
panic(err)
}
} else {
tx.Rollback(r.Context())
if err := tx.Rollback(r.Context()); err != nil {
panic(err)
}
panic(err)
}
httplib.Redirect(w, r, "/admin/campsites/types/"+f.TypeSlug+"/options", http.StatusSeeOther)