Browse Source

Always uppercase the method

I have no idea if net/http does this for you already, but I may as well do it
myself too...
Carl Jackson 12 years ago
parent
commit
6d67eba9e6
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      web/router.go

+ 1
- 1
web/router.go View File

@ -113,7 +113,7 @@ func parseHandler(h interface{}) Handler {
}
func httpMethod(mname string) method {
switch mname {
switch strings.ToUpper(mname) {
case "CONNECT":
return mCONNECT
case "DELETE":


Loading…
Cancel
Save