summaryrefslogtreecommitdiff
path: root/service
diff options
context:
space:
mode:
Diffstat (limited to 'service')
-rw-r--r--service/http/request.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/service/http/request.go b/service/http/request.go
index e56acb2a..98508342 100644
--- a/service/http/request.go
+++ b/service/http/request.go
@@ -151,7 +151,7 @@ func (r *Request) Payload() (p *roadrunner.Payload, err error) {
// contentType returns the payload content type.
func (r *Request) contentType() int {
- if r.Method == "GET" || r.Method == "HEAD" || r.Method == "OPTIONS" {
+ if r.Method == "HEAD" || r.Method == "OPTIONS" {
return contentNone
}