Compare commits
1 Commits
Author | SHA1 | Date | |
---|---|---|---|
66d47cc824 |
@ -153,6 +153,10 @@ func (c *jsonpbCodecV2) Marshal(d []byte, v interface{}, opts ...codec.Option) (
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
return marshalOptions.MarshalAppend(d[:0], m)
|
return marshalOptions.MarshalAppend(d[:0], m)
|
||||||
|
case codec.RawMessage:
|
||||||
|
return []byte(m), nil
|
||||||
|
case *codec.RawMessage:
|
||||||
|
return []byte(*m), nil
|
||||||
default:
|
default:
|
||||||
return nil, codec.ErrInvalidMessage
|
return nil, codec.ErrInvalidMessage
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user