FIX: JsonInt64.MarshalJSON missing quotes
This commit is contained in:
parent
39f0e43cd7
commit
9892e2c36b
|
@ -138,8 +138,8 @@ func buildResponseError(data json.RawMessage) error {
|
||||||
type JsonInt64 int64
|
type JsonInt64 int64
|
||||||
|
|
||||||
// MarshalJSON marshals to json
|
// MarshalJSON marshals to json
|
||||||
func (jsonInt64 *JsonInt64) MarshalJSON() ([]byte, error) {
|
func (jsonInt64 JsonInt64) MarshalJSON() ([]byte, error) {
|
||||||
return []byte(strconv.FormatInt(int64(*jsonInt64), 10)), nil
|
return []byte(`"`+strconv.FormatInt(int64(jsonInt64), 10)+`"`), nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// UnmarshalJSON unmarshals from json
|
// UnmarshalJSON unmarshals from json
|
||||||
|
|
Loading…
Reference in a new issue