Compare commits

..

No commits in common. "v3" and "v3.10.3" have entirely different histories.
v3 ... v3.10.3

View File

@ -37,10 +37,7 @@ func (c *urlencodeCodec) Marshal(v interface{}, opts ...codec.Option) ([]byte, e
return m.Data, nil
case *pb.Frame:
return m.Data, nil
case codec.RawMessage:
return []byte(m), nil
case *codec.RawMessage:
return []byte(*m), nil
}
uv, err := rutil.StructURLValues(v, "", []string{"protobuf", "json", "xml", "yaml"})