media: Add missing JSON tags to Type
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Mon, 31 Jul 2017 14:53:13 +0000 (16:53 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Mon, 31 Jul 2017 14:53:13 +0000 (16:53 +0200)
See https://github.com/gohugoio/hugoDocs/issues/114

media/mediaType.go

index 59de655b612539159ef5ba1f2343a9b3ab4431dd..8946a9e83f8ee89052539dca9eebdef5dfceb74c 100644 (file)
@@ -192,8 +192,8 @@ func DecodeTypes(maps ...map[string]interface{}) (Types, error) {
 func (t Type) MarshalJSON() ([]byte, error) {
        type Alias Type
        return json.Marshal(&struct {
-               Type   string
-               String string
+               Type   string `json:"type"`
+               String string `json:"string"`
                Alias
        }{
                Type:   t.Type(),