summaryrefslogtreecommitdiffstats
path: root/model/command_response.go
diff options
context:
space:
mode:
Diffstat (limited to 'model/command_response.go')
-rw-r--r--model/command_response.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/model/command_response.go b/model/command_response.go
index 0b80b297b..d17bd00e3 100644
--- a/model/command_response.go
+++ b/model/command_response.go
@@ -7,6 +7,7 @@ import (
"encoding/json"
"io"
"io/ioutil"
+ "strings"
)
const (
@@ -33,7 +34,7 @@ func (o *CommandResponse) ToJson() string {
}
func CommandResponseFromHTTPBody(contentType string, body io.Reader) *CommandResponse {
- if contentType == "application/json" {
+ if strings.TrimSpace(strings.Split(contentType, ";")[0]) == "application/json" {
return CommandResponseFromJson(body)
}
if b, err := ioutil.ReadAll(body); err == nil {