diff options
Diffstat (limited to 'service')
-rw-r--r-- | service/http/request.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/service/http/request.go b/service/http/request.go index eb5c05bd..696ce7ff 100644 --- a/service/http/request.go +++ b/service/http/request.go @@ -148,7 +148,7 @@ func (r *Request) Payload() (p *roadrunner.Payload, err error) { // contentType returns the payload content type. func (r *Request) contentType() int { - if r.Method != "POST" && r.Method != "PUT" && r.Method != "PATCH" && r.Method != "DELETE" { + if r.Method == "GET" && r.Method == "HEAD" { return contentNone } |