about summary refs log tree commit diff
path: root/src/http.go
diff options
context:
space:
mode:
authorEmile <hanemile@protonmail.com>2019-10-20 12:24:39 +0200
committerEmile <hanemile@protonmail.com>2019-10-20 12:24:39 +0200
commitf28288dd3208aa99381c22c6bb9713a6e7714b5e (patch)
tree53e51d88edd51dc61ef109bda7c573c8ff20207b /src/http.go
parentbefddbcbcabe60a04db59d1f64f962c85ec7f2dc (diff)
fixed the edit function + error handling
Diffstat (limited to 'src/http.go')
-rw-r--r--src/http.go8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/http.go b/src/http.go
index 443b6a3..e7e874d 100644
--- a/src/http.go
+++ b/src/http.go
@@ -150,6 +150,7 @@ func editGetHandler(w http.ResponseWriter, r *http.Request) {
 
 	if r.URL.Query()["uuid"] == nil {
 		log.Println("editnoparam")
+		http.Redirect(w, r, "/editSelect", http.StatusSeeOther)
 		return
 	}
 	uuid = r.URL.Query()["uuid"][0]
@@ -214,7 +215,12 @@ func editPostHandler(w http.ResponseWriter, r *http.Request) {
 	}
 
 	// update the challenge in the database
-	dbEditChallengeUUID(r.Form.Get("challengeUUID"), editedChallenge)
+	EditError := dbEditChallengeUUID(r.Form.Get("challengeUUID"), editedChallenge)
+	if EditError != nil {
+		log.Println("Could not edit:")
+		log.Println(EditError)
+	}
+
 	log.Println("done editing challenge!")
 
 	http.Redirect(w, r, "/edit", http.StatusSeeOther)