aboutsummaryrefslogtreecommitdiffstats
path: root/api.go
diff options
context:
space:
mode:
authorclsr <clsr@clsr.net>2016-06-17 14:06:43 +0200
committerclsr <clsr@clsr.net>2016-06-17 14:06:43 +0200
commit8e6f1aab4cce360f62e46ba88636e0c1b3fcef8d (patch)
treee52a9f40861a8471923827f15ed85a61a297be58 /api.go
parentd5bfbdefb1bb56d7062975cd04954aa1ad346018 (diff)
downloadgomf-8e6f1aab4cce360f62e46ba88636e0c1b3fcef8d.tar.gz
gomf-8e6f1aab4cce360f62e46ba88636e0c1b3fcef8d.zip
Handle HTTP OPTIONS and reject unknown HTTP methods
Diffstat (limited to 'api.go')
-rw-r--r--api.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/api.go b/api.go
index b3b7063..2e9df52 100644
--- a/api.go
+++ b/api.go
@@ -63,7 +63,7 @@ func handleUpload(w http.ResponseWriter, r *http.Request) {
output := r.FormValue("output")
resp := response{Files: []result{}}
- if r.Method == "GET" && output == "html" {
+ if r.Method == http.MethodGet && output == "html" {
respond(w, output, resp)
return
}