Skip to content

Commit 0052589

Browse files
committed
Merge branch 'master' of ssh://github.com/mayth/go-simple-upload-server
2 parents d4b38a8 + c4806e3 commit 0052589

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ func (s Server) ServeHTTP(w http.ResponseWriter, r *http.Request) {
206206
token := r.URL.Query().Get("token")
207207
// if token is not found, check the form parameter.
208208
if token == "" {
209-
token = r.Form.Get("token")
209+
token = r.FormValue("token")
210210
}
211211
if token != s.SecureToken {
212212
w.WriteHeader(http.StatusUnauthorized)

0 commit comments

Comments
 (0)